Skip to content

New oauth2_proxy version #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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 <adam.greene@gmail.com>

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