chore: update golang image

Signed-off-by: Mark Sagi-Kazar <mark.sagikazar@gmail.com>
This commit is contained in:
Mark Sagi-Kazar 2022-03-22 14:30:47 +01:00
parent 102762062b
commit cdd93cd143
No known key found for this signature in database
GPG Key ID: 31AB0439F4C5C90E
1 changed files with 4 additions and 4 deletions

View File

@ -1,6 +1,6 @@
ARG BASEIMAGE=alpine:3.15.0
ARG BASEIMAGE=alpine:3.15.1
FROM golang:1.17.6-alpine3.14 AS builder
FROM golang:1.17.8-alpine3.15 AS builder
WORKDIR /usr/local/src/dex
@ -22,13 +22,13 @@ COPY . .
RUN make release-binary
FROM alpine:3.15.0 AS stager
FROM alpine:3.15.1 AS stager
RUN mkdir -p /var/dex
RUN mkdir -p /etc/dex
COPY config.docker.yaml /etc/dex/
FROM alpine:3.15.0 AS gomplate
FROM alpine:3.15.1 AS gomplate
ARG TARGETOS
ARG TARGETARCH