From 495a51ae578fbf3bf9dfe1d0746fed1a77992d4c Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Mon, 14 Feb 2022 15:27:25 +0000 Subject: [PATCH] Fixup dockerfile Signed-off-by: Oliver Gould --- Dockerfile | 9 --------- 1 file changed, 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index aa18facdaa..e370b95113 100644 --- a/Dockerfile +++ b/Dockerfile @@ -61,16 +61,7 @@ RUN --mount=type=cache,target=target \ ## Install the proxy binary into the base runtime image. FROM $RUNTIME_IMAGE as runtime -# When set, causes the proxy to remove the identity wrapper responsible for -# CSR and key generation. -ARG SKIP_IDENTITY_WRAPPER - WORKDIR /linkerd COPY --from=build /out/linkerd2-proxy /usr/lib/linkerd/linkerd2-proxy ENV LINKERD2_PROXY_LOG=warn,linkerd=info -RUN \ - if [ -n "$SKIP_IDENTITY_WRAPPER" ] ; then \ - rm -f /usr/bin/linkerd2-proxy-run && \ - ln /usr/lib/linkerd/linkerd2-proxy /usr/bin/linkerd2-proxy-run ; \ - fi # Inherits the ENTRYPOINT from the runtime image.