Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
bfirsh committed Oct 13, 2016
0 parents commit 897c96b
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
FROM alpine:3.4

RUN apk add --no-cache --virtual .fetch-deps \
ca-certificates \
openssl \
tar \
&& wget -O /oauth2_proxy.tar.gz https://github.com/bitly/oauth2_proxy/releases/download/v2.1/oauth2_proxy-2.1.linux-amd64.go1.6.tar.gz \
&& tar -xvzf /oauth2_proxy.tar.gz \
&& rm /oauth2_proxy.tar.gz \
&& apk del .fetch-deps

ENTRYPOINT ["/oauth2_proxy"]

0 comments on commit 897c96b

Please sign in to comment.