pomerium/.github/Dockerfile-cloudrun
dependabot[bot] d17e08696f
chore(deps): bump busybox from a5d0ce4 to 498a000 in /.github in the docker group (#5512)
chore(deps): bump busybox in /.github in the docker group

Bumps the docker group in /.github with 1 update: busybox.


Updates `busybox` from `a5d0ce4` to `498a000`

---
updated-dependencies:
- dependency-name: busybox
  dependency-type: direct:production
  dependency-group: docker
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-03-03 13:52:10 -07:00

16 lines
498 B
Text

FROM busybox:latest@sha256:498a000f370d8c37927118ed80afe8adc38d1edcbfc071627d17b25c88efcab0 AS build
RUN touch /config.yaml
FROM gcr.io/distroless/base:latest@sha256:74ddbf52d93fafbdd21b399271b0b4aac1babf8fa98cab59e5692e01169a1348
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"]