From 1846c71d94fe56a2b837c48ffb5f7c355dc6a2f6 Mon Sep 17 00:00:00 2001 From: Robert Date: Fri, 28 Aug 2020 12:39:54 -0700 Subject: [PATCH] Include pomerium-cli in the docker image by default. Fixes #1343. (#1345) Size increases by 22MB. (144MB -> 167MB) This normalizes with expectations (and instructions, see impersonation docs) that it will be there. --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b669eae3e..b465c1808 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,8 @@ COPY . . # build RUN make build-deps -RUN make build +RUN make build NAME=pomerium +RUN make build NAME=pomerium-cli RUN touch /config.yaml FROM gcr.io/distroless/base:debug