mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 02:16:28 +02:00
Bumps the docker group in /.github with 3 updates: busybox, distroless/base and distroless/base-debian12. Updates `busybox` from `768e5c6` to `db142d4` Updates `distroless/base` from `8fe31fb` to `e9d0321` Updates `distroless/base-debian12` from `8fe31fb` to `e9d0321` --- updated-dependencies: - dependency-name: busybox dependency-type: direct:production dependency-group: docker - dependency-name: distroless/base dependency-type: direct:production dependency-group: docker - dependency-name: distroless/base-debian12 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>
10 lines
442 B
Text
10 lines
442 B
Text
FROM busybox:latest@sha256:db142d433cdde11f10ae479dbf92f3b13d693fd1c91053da9979728cceb1dc68 AS build
|
|
RUN touch /config.yaml
|
|
|
|
FROM gcr.io/distroless/base-debian12:debug-nonroot@sha256:d88b20e321d3f81d9f712bff98caffef5d4cd2066bbda3e18c1c81d3441d4d4c
|
|
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"]
|