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 1
1
# Changelog
2
2
3
+ ## 2.1-2
4
+
5
+ * Fix 500 Internal Error Internal Error when sending POST to Google
6
+ APIs.
7
+
3
8
## 2.1-1
4
9
5
10
* Add SHA check of package.
Original file line number Diff line number Diff line change 1
1
FROM alpine:3.4
2
2
3
- ENV BUILD_PKGS="ca-certificates wget"
3
+ ENV APP_PKGS="ca-certificates"
4
+ ENV BUILD_PKGS="wget"
4
5
5
6
ENV OAUTH2_PROXY_VERSION="2.1"
6
7
ENV OAUTH2_PROXY_PKG="oauth2_proxy-${OAUTH2_PROXY_VERSION}.linux-amd64.go1.6" \
7
8
OAUTH2_PROXY_SHA="3061e5b04bd14eeb9ec0ad1c9b324ba8d99d50eaadc5f528cdf4d21043828298"
8
9
RUN apk update && \
9
10
apk upgrade && \
10
- apk add $BUILD_PKGS && \
11
+ apk add $APP_PKGS $ BUILD_PKGS && \
11
12
mkdir -p /var/tmp/oauth2_proxy && \
12
13
cd /var/tmp/oauth2_proxy && \
13
14
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