From f395016eaa830892acf62f93aaf7dd607654d888 Mon Sep 17 00:00:00 2001 From: Eli Uriegas Date: Fri, 10 Aug 2018 21:33:59 +0000 Subject: [PATCH] Change runc compilation to static Signed-off-by: Eli Uriegas Upstream-commit: 1cd96d5f686b389920ba01d0b230d7c29148e8ba Component: packaging --- components/packaging/image/Dockerfile.engine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/packaging/image/Dockerfile.engine b/components/packaging/image/Dockerfile.engine index 15e1f00047..1da4d134e3 100644 --- a/components/packaging/image/Dockerfile.engine +++ b/components/packaging/image/Dockerfile.engine @@ -51,7 +51,7 @@ RUN git clone https://github.com/opencontainers/runc.git /go/src/github.com/open WORKDIR /go/src/github.com/opencontainers/runc RUN source /binaries-commits && \ git checkout -q "$RUNC_COMMIT" && \ - make BUILDTAGS='seccomp apparmor' && make install + make BUILDTAGS='seccomp apparmor' static && make install # Final docker image FROM scratch