2021-11-05 04:07:19 +00:00
|
|
|
FROM golang:1.17.3-alpine3.14 AS builder
|
2016-08-09 22:26:32 +00:00
|
|
|
|
2021-01-23 18:13:13 +00:00
|
|
|
WORKDIR /usr/local/src/dex
|
|
|
|
|
|
|
|
RUN apk add --no-cache --update alpine-sdk
|
|
|
|
|
2020-09-27 21:47:39 +00:00
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT=""
|
|
|
|
|
2021-01-23 18:13:13 +00:00
|
|
|
ENV GOOS=${TARGETOS} GOARCH=${TARGETARCH} GOARM=${TARGETVARIANT}
|
2017-09-18 06:56:39 +00:00
|
|
|
|
2020-11-05 13:26:39 +00:00
|
|
|
ARG GOPROXY
|
|
|
|
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
COPY api/v2/go.mod api/v2/go.sum ./api/v2/
|
|
|
|
RUN go mod download
|
|
|
|
|
2020-09-27 21:47:39 +00:00
|
|
|
COPY . .
|
|
|
|
|
|
|
|
RUN make release-binary
|
2017-09-18 06:56:39 +00:00
|
|
|
|
2021-08-30 04:07:37 +00:00
|
|
|
FROM alpine:3.14.2 AS gomplate
|
2021-01-29 04:34:38 +00:00
|
|
|
|
|
|
|
ARG TARGETOS
|
|
|
|
ARG TARGETARCH
|
|
|
|
ARG TARGETVARIANT
|
2021-02-04 15:43:00 +00:00
|
|
|
|
|
|
|
ENV GOMPLATE_VERSION=v3.9.0
|
2021-01-29 04:34:38 +00:00
|
|
|
|
2021-01-28 21:48:30 +00:00
|
|
|
RUN wget -O /usr/local/bin/gomplate \
|
2021-03-20 12:23:46 +00:00
|
|
|
"https://github.com/hairyhenderson/gomplate/releases/download/${GOMPLATE_VERSION}/gomplate_${TARGETOS:-linux}-${TARGETARCH:-amd64}${TARGETVARIANT}" \
|
2021-01-28 21:48:30 +00:00
|
|
|
&& chmod +x /usr/local/bin/gomplate
|
2016-08-09 22:26:32 +00:00
|
|
|
|
2021-01-29 09:46:47 +00:00
|
|
|
|
2021-08-30 04:07:37 +00:00
|
|
|
FROM alpine:3.14.2
|
2020-09-27 21:47:39 +00:00
|
|
|
|
2016-11-15 01:25:19 +00:00
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
# OpenSSL is required so wget can query HTTPS endpoints for health checking.
|
2020-10-16 16:52:21 +00:00
|
|
|
RUN apk add --no-cache --update ca-certificates openssl
|
2016-08-09 22:26:32 +00:00
|
|
|
|
2021-01-23 17:35:31 +00:00
|
|
|
RUN mkdir -p /var/dex
|
|
|
|
RUN chown -R 1001:1001 /var/dex
|
|
|
|
|
2021-01-28 11:25:55 +00:00
|
|
|
RUN mkdir -p /etc/dex
|
2021-02-04 15:43:00 +00:00
|
|
|
COPY config.docker.yaml /etc/dex/
|
2021-01-28 11:25:55 +00:00
|
|
|
RUN chown -R 1001:1001 /etc/dex
|
|
|
|
|
2021-01-23 17:45:12 +00:00
|
|
|
# Copy module files for CVE scanning / dependency analysis.
|
2021-01-23 17:58:04 +00:00
|
|
|
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 17:45:12 +00:00
|
|
|
|
2021-01-23 17:58:04 +00:00
|
|
|
COPY --from=builder /go/bin/dex /usr/local/bin/dex
|
2021-03-22 10:59:55 +00:00
|
|
|
COPY --from=builder /usr/local/src/dex/web /srv/dex/web
|
2021-01-23 17:46:56 +00:00
|
|
|
|
2021-03-22 10:59:55 +00:00
|
|
|
COPY --from=gomplate /usr/local/bin/gomplate /usr/local/bin/gomplate
|
2016-11-30 22:26:54 +00:00
|
|
|
|
2021-01-23 18:06:24 +00:00
|
|
|
USER 1001:1001
|
|
|
|
|
2021-02-04 15:43:00 +00:00
|
|
|
COPY docker-entrypoint.sh /entrypoint.sh
|
2016-08-09 22:26:32 +00:00
|
|
|
|
2021-02-04 15:43:00 +00:00
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|
|
|
|
CMD ["dex", "serve", "/etc/dex/config.docker.yaml"]
|