File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed
Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## 2.1-2
4+
5+ * Fix 500 Internal Error Internal Error when sending POST to Google
6+ APIs.
7+
38## 2.1-1
49
510* Add SHA check of package.
Original file line number Diff line number Diff line change 11FROM alpine:3.4
22
3- ENV BUILD_PKGS="ca-certificates wget"
3+ ENV APP_PKGS="ca-certificates"
4+ ENV BUILD_PKGS="wget"
45
56ENV OAUTH2_PROXY_VERSION="2.1"
67ENV OAUTH2_PROXY_PKG="oauth2_proxy-${OAUTH2_PROXY_VERSION}.linux-amd64.go1.6" \
78 OAUTH2_PROXY_SHA="3061e5b04bd14eeb9ec0ad1c9b324ba8d99d50eaadc5f528cdf4d21043828298"
89RUN apk update && \
910 apk upgrade && \
10- apk add $BUILD_PKGS && \
11+ apk add $APP_PKGS $ BUILD_PKGS && \
1112 mkdir -p /var/tmp/oauth2_proxy && \
1213 cd /var/tmp/oauth2_proxy && \
1314 wget --progress=dot:mega https://github.com/bitly/oauth2_proxy/releases/download/v${OAUTH2_PROXY_VERSION}/${OAUTH2_PROXY_PKG}.tar.gz && \
You can’t perform that action at this time.
0 commit comments