Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM gliderlabs/alpine:3.2
MAINTAINER Adam Greene <[email protected]>

ENV OAUTH2_PROXY_VERSION 2.0.1.linux-amd64.go1.4.2
ENV OAUTH2_PROXY_VERSION 2.2.0.linux-amd64.go1.8.1

RUN apk --update add curl

RUN curl -sL -o oauth2_proxy.tar.gz \
"https://github.com/bitly/oauth2_proxy/releases/download/v2.0.1/oauth2_proxy-$OAUTH2_PROXY_VERSION.tar.gz" \
"https://github.com/bitly/oauth2_proxy/releases/download/v2.2/oauth2_proxy-$OAUTH2_PROXY_VERSION.tar.gz" \
&& tar xzvf oauth2_proxy.tar.gz \
&& mv oauth2_proxy-$OAUTH2_PROXY_VERSION/oauth2_proxy /bin/ \
&& chmod +x /bin/oauth2_proxy \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = skippy/oauth2_proxy
VERSION = 2.0.1
VERSION = 2.1

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems as if version of skippy/oauth2_proxy is synchronized with oauth2_proxy version. Maybe "2.2" here?!


all: build

Expand Down