pomerium/.github/Dockerfile-release-debug-nonroot
dependabot[bot] 2c741ce371
chore(deps): bump busybox from 5eef5ed to 9ae97d3 in /.github in the docker group (#5161)
chore(deps): bump busybox in /.github in the docker group

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


Updates `busybox` from `5eef5ed` to `9ae97d3`

---
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>
2024-07-01 11:52:49 -06:00

10 lines
442 B
Text

FROM busybox:latest@sha256:9ae97d36d26566ff84e8893c64a6dc4fe8ca6d1144bf5b87b2b85a32def253c7 as build
RUN touch /config.yaml
FROM gcr.io/distroless/base-debian12:debug-nonroot@sha256:8c26ef9be997951f136778615affb58c4b8fda06c06f3abc17e68322228d884e
ENV AUTOCERT_DIR /data/autocert
WORKDIR /pomerium
COPY pomerium /bin/
COPY --from=build /config.yaml /pomerium/config.yaml
ENTRYPOINT [ "/bin/pomerium" ]
CMD ["-config","/pomerium/config.yaml"]