Merge pull request #2624 from dexidp/dependabot/docker/alpine-3.16.2

build(deps): bump alpine from 3.16.1 to 3.16.2
This commit is contained in:
Márk Sági-Kazár 2022-08-10 11:45:06 +02:00 committed by GitHub
commit b479d26137
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -22,13 +22,13 @@ COPY . .
RUN make release-binary
FROM alpine:3.16.1 AS stager
FROM alpine:3.16.2 AS stager
RUN mkdir -p /var/dex
RUN mkdir -p /etc/dex
COPY config.docker.yaml /etc/dex/
FROM alpine:3.16.1 AS gomplate
FROM alpine:3.16.2 AS gomplate
ARG TARGETOS
ARG TARGETARCH
@ -41,7 +41,7 @@ RUN wget -O /usr/local/bin/gomplate \
&& chmod +x /usr/local/bin/gomplate
# For Dependabot to detect base image versions
FROM alpine:3.16.1 AS alpine
FROM alpine:3.16.2 AS alpine
FROM gcr.io/distroless/static:latest AS distroless
FROM $BASE_IMAGE