2022-04-14 19:05:32 +05:30
|
|
|
ARG BASE_IMAGE=alpine
|
2022-01-19 06:10:28 +05:30
|
|
|
|
2022-03-07 09:37:46 +05:30
|
|
|
FROM golang:1.17.8-alpine3.14 AS builder
|
2016-08-10 03:56:32 +05:30
|
|
|
|
2021-01-23 23:43:13 +05:30
|
|
|
WORKDIR /usr/local/src/dex
|
|
|
|
|
2022-01-18 23:10:27 +05:30
|
|
|
RUN apk add --no-cache --update alpine-sdk ca-certificates openssl
|
2021-01-23 23:43:13 +05:30
|
|
|
|
2020-09-28 03:17:39 +05:30
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT=""
|
|
|
|
|
2021-01-23 23:43:13 +05:30
|
|
|
ENV GOOS=${TARGETOS} GOARCH=${TARGETARCH} GOARM=${TARGETVARIANT}
|
2017-09-18 12:26:39 +05:30
|
|
|
|
2020-11-05 18:56:39 +05:30
|
|
|
ARG GOPROXY
|
|
|
|
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
COPY api/v2/go.mod api/v2/go.sum ./api/v2/
|
|
|
|
RUN go mod download
|
|
|
|
|
2020-09-28 03:17:39 +05:30
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN make release-binary
|
2017-09-18 12:26:39 +05:30
|
|
|
|
2022-04-05 09:36:34 +05:30
|
|
|
FROM alpine:3.15.4 AS stager
|
2022-01-19 06:10:28 +05:30
|
|
|
|
|
|
|
RUN mkdir -p /var/dex
|
|
|
|
RUN mkdir -p /etc/dex
|
|
|
|
COPY config.docker.yaml /etc/dex/
|
|
|
|
|
2022-04-05 09:36:34 +05:30
|
|
|
FROM alpine:3.15.4 AS gomplate
|
2021-01-29 10:04:38 +05:30
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT
|
2021-02-04 21:13:00 +05:30
|
|
|
|
2022-01-27 03:14:02 +05:30
|
|
|
ENV GOMPLATE_VERSION=v3.10.0
|
2021-01-29 10:04:38 +05:30
|
|
|
|
2021-01-29 03:18:30 +05:30
|
|
|
RUN wget -O /usr/local/bin/gomplate \
|
2021-11-15 18:57:45 +05:30
|
|
|
"https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_${TARGETOS:-linux}-${TARGETARCH:-amd64}${TARGETVARIANT}" \
|
|
|
|
&& chmod +x /usr/local/bin/gomplate
|
2016-08-10 03:56:32 +05:30
|
|
|
|
2022-04-14 18:48:28 +05:30
|
|
|
# For Dependabot to detect base image versions
|
|
|
|
FROM alpine:3.15.4 AS alpine
|
|
|
|
FROM gcr.io/distroless/static:latest AS distroless
|
2021-01-29 15:16:47 +05:30
|
|
|
|
2022-04-14 19:05:32 +05:30
|
|
|
FROM $BASE_IMAGE
|
2020-09-28 03:17:39 +05:30
|
|
|
|
2016-11-15 06:55:19 +05:30
|
|
|
# Dex connectors, such as GitHub and Google logins require root certificates.
|
|
|
|
# Proper installations should manage those certificates, but it's a bad user
|
|
|
|
# experience when this doesn't work out of the box.
|
|
|
|
#
|
2022-01-18 23:10:27 +05:30
|
|
|
# See https://go.dev/src/crypto/x509/root_linux.go for Go root CA bundle locations.
|
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2016-08-10 03:56:32 +05:30
|
|
|
|
2022-01-19 06:10:28 +05:30
|
|
|
COPY --from=stager --chown=1001:1001 /var/dex /var/dex
|
|
|
|
COPY --from=stager --chown=1001:1001 /etc/dex /etc/dex
|
2021-01-28 16:55:55 +05:30
|
|
|
|
2021-01-23 23:15:12 +05:30
|
|
|
# Copy module files for CVE scanning / dependency analysis.
|
2021-01-23 23:28:04 +05:30
|
|
|
COPY --from=builder /usr/local/src/dex/go.mod /usr/local/src/dex/go.sum /usr/local/src/dex/
|
|
|
|
COPY --from=builder /usr/local/src/dex/api/v2/go.mod /usr/local/src/dex/api/v2/go.sum /usr/local/src/dex/api/v2/
|
2021-01-23 23:15:12 +05:30
|
|
|
|
2021-01-23 23:28:04 +05:30
|
|
|
COPY --from=builder /go/bin/dex /usr/local/bin/dex
|
2022-01-18 22:54:05 +05:30
|
|
|
COPY --from=builder /go/bin/docker-entrypoint /usr/local/bin/docker-entrypoint
|
2021-03-22 16:29:55 +05:30
|
|
|
COPY --from=builder /usr/local/src/dex/web /srv/dex/web
|
2021-01-23 23:16:56 +05:30
|
|
|
|
2021-03-22 16:29:55 +05:30
|
|
|
COPY --from=gomplate /usr/local/bin/gomplate /usr/local/bin/gomplate
|
2016-12-01 03:56:54 +05:30
|
|
|
|
2021-01-23 23:36:24 +05:30
|
|
|
USER 1001:1001
|
|
|
|
|
2022-01-18 22:54:05 +05:30
|
|
|
ENTRYPOINT ["/usr/local/bin/docker-entrypoint"]
|
2021-02-04 21:13:00 +05:30
|
|
|
CMD ["dex", "serve", "/etc/dex/config.docker.yaml"]
|