2021-02-17 20:59:46 +00:00
|
|
|
FROM golang:1.16-buster AS builder
|
2020-07-07 09:53:32 +01:00
|
|
|
ARG VERSION
|
2019-02-02 12:08:19 +13:00
|
|
|
|
|
|
|
# Copy sources
|
2020-03-29 14:54:36 +01:00
|
|
|
WORKDIR $GOPATH/src/github.com/oauth2-proxy/oauth2-proxy
|
2019-02-02 12:08:19 +13:00
|
|
|
|
|
|
|
# Fetch dependencies
|
2019-07-15 21:38:55 +01:00
|
|
|
COPY go.mod go.sum ./
|
2019-07-15 21:49:38 +01:00
|
|
|
RUN GO111MODULE=on go mod download
|
2019-02-02 12:08:19 +13:00
|
|
|
|
2019-07-11 17:18:07 -05:00
|
|
|
# Now pull in our code
|
|
|
|
COPY . .
|
|
|
|
|
2019-03-20 15:15:47 -07:00
|
|
|
# Build binary and make sure there is at least an empty key file.
|
|
|
|
# This is useful for GCP App Engine custom runtime builds, because
|
|
|
|
# you cannot use multiline variables in their app.yaml, so you have to
|
|
|
|
# build the key into the container and then tell it where it is
|
|
|
|
# by setting OAUTH2_PROXY_JWT_KEY_FILE=/etc/ssl/private/jwt_signing_key.pem
|
|
|
|
# in app.yaml instead.
|
2020-07-07 09:53:32 +01:00
|
|
|
RUN VERSION=${VERSION} GOARCH=arm64 make build && touch jwt_signing_key.pem
|
2019-02-02 12:08:19 +13:00
|
|
|
|
|
|
|
# Copy binary to alpine
|
2021-01-30 07:33:28 -08:00
|
|
|
FROM arm64v8/alpine:3.13
|
2020-02-23 18:16:18 +00:00
|
|
|
COPY nsswitch.conf /etc/nsswitch.conf
|
2019-02-02 14:20:20 +13:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2020-03-29 14:54:36 +01:00
|
|
|
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/oauth2-proxy /bin/oauth2-proxy
|
|
|
|
COPY --from=builder /go/src/github.com/oauth2-proxy/oauth2-proxy/jwt_signing_key.pem /etc/ssl/private/jwt_signing_key.pem
|
2019-02-02 12:08:19 +13:00
|
|
|
|
2019-05-03 18:38:03 +12:00
|
|
|
USER 2000:2000
|
2019-03-05 21:26:49 +13:00
|
|
|
|
2020-03-29 14:54:36 +01:00
|
|
|
ENTRYPOINT ["/bin/oauth2-proxy"]
|