oauth2_proxy/Dockerfile

17 lines
406 B
Docker
Raw Normal View History

2018-12-20 11:06:26 +00:00
FROM golang:1.10 AS builder
WORKDIR /go/src/github.com/pusher/oauth2_proxy
COPY . .
# Fetch dependencies
RUN go get -u github.com/golang/dep/cmd/dep
RUN dep ensure --vendor-only
# Build image
2019-01-04 10:58:30 +00:00
RUN ./configure && make clean oauth2_proxy
2018-12-20 11:06:26 +00:00
2019-01-04 10:58:30 +00:00
# Copy binary to debian
FROM debian:stretch
2018-12-20 11:06:26 +00:00
COPY --from=builder /go/src/github.com/pusher/oauth2_proxy/oauth2_proxy /bin/oauth2_proxy
ENTRYPOINT ["/bin/oauth2_proxy"]