2019-04-12 10:15:29 +00:00
|
|
|
FROM golang:1.12-stretch AS builder
|
2019-01-21 17:50:50 +00:00
|
|
|
|
|
|
|
# Download tools
|
|
|
|
RUN wget -O $GOPATH/bin/dep https://github.com/golang/dep/releases/download/v0.5.0/dep-linux-amd64
|
|
|
|
RUN chmod +x $GOPATH/bin/dep
|
|
|
|
|
|
|
|
# Copy sources
|
|
|
|
WORKDIR $GOPATH/src/github.com/pusher/oauth2_proxy
|
2018-12-20 11:06:26 +00:00
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Fetch dependencies
|
|
|
|
RUN dep ensure --vendor-only
|
|
|
|
|
2019-01-21 17:50:50 +00:00
|
|
|
# Build binary
|
|
|
|
RUN ./configure && make build
|
2018-12-20 11:06:26 +00:00
|
|
|
|
2019-01-21 17:50:50 +00:00
|
|
|
# Copy binary to alpine
|
|
|
|
FROM alpine:3.8
|
2019-02-02 01:20:20 +00:00
|
|
|
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
2018-12-20 11:06:26 +00:00
|
|
|
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/oauth2_proxy /bin/oauth2_proxy
|
|
|
|
|
2019-03-05 08:26:49 +00:00
|
|
|
RUN addgroup -S -g 2000 oauth2proxy && adduser -S -u 2000 oauth2proxy -G oauth2proxy
|
|
|
|
USER oauth2proxy
|
|
|
|
|
2018-12-20 11:06:26 +00:00
|
|
|
ENTRYPOINT ["/bin/oauth2_proxy"]
|