mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 02:16:28 +02:00
Bumps busybox from `1ceb872` to `ba76950`. --- updated-dependencies: - dependency-name: busybox dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
16 lines
498 B
Text
16 lines
498 B
Text
|
|
FROM busybox:latest@sha256:ba76950ac9eaa407512c9d859cea48114eeff8a6f12ebaa5d32ce79d4a017dd8 as build
|
|
RUN touch /config.yaml
|
|
|
|
FROM gcr.io/distroless/base:latest@sha256:6c1e34e2f084fe6df17b8bceb1416f1e11af0fcdb1cef11ee4ac8ae127cb507c
|
|
ENV AUTOCERT_DIR /data/autocert
|
|
WORKDIR /pomerium
|
|
COPY pomerium* /bin/
|
|
COPY --from=build /config.yaml /pomerium/config.yaml
|
|
|
|
ENV ADDRESS ":8080"
|
|
ENV GRPC_INSECURE true
|
|
ENV INSECURE_SERVER true
|
|
|
|
ENTRYPOINT [ "/bin/pomerium" ]
|
|
CMD ["-config","/pomerium/config.yaml"]
|