Update nginx image

This commit is contained in:
Manuel Alejandro de Brito Fontes 2019-03-01 08:21:26 -03:00
parent e48e9c1c77
commit fbed06fd3c
No known key found for this signature in database
GPG key ID: 786136016A8BA02A
4 changed files with 10 additions and 9 deletions

View file

@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
FROM quay.io/kubernetes-ingress-controller/nginx-amd64:0.80
FROM quay.io/kubernetes-ingress-controller/nginx-amd64:0.81
RUN clean-install \
g++ \
@ -25,9 +25,9 @@ RUN clean-install \
python \
pkg-config
ENV GOLANG_VERSION 1.11.5
ENV GOLANG_VERSION 1.12
ENV GO_ARCH linux-amd64
ENV GOLANG_SHA ff54aafedff961eb94792487e827515da683d61a5f9482f668008832631e5d25
ENV GOLANG_SHA 750a07fef8579ae4839458701f4df690e0b20b8bcce33b437e4df89c451b6f13
RUN set -eux; \
url="https://golang.org/dl/go${GOLANG_VERSION}.${GO_ARCH}.tar.gz"; \
@ -45,8 +45,9 @@ RUN mkdir -p "$GOPATH/src" "$GOPATH/bin" && chmod -R 777 "$GOPATH"
WORKDIR $GOPATH
ENV RESTY_CLI_VERSION 0.22rc2
ENV RESTY_CLI_SHA 1ec64d204469a04da553c95eaafb2e5601a03acb8f26cc10ae16b15525228c12
ENV RESTY_CLI_VERSION 0.23
ENV RESTY_CLI_SHA 8715b9a6e33140fd468779cd561c0c622f7444a902dc578b1137941ff3fc1ed8
RUN set -eux; \
url="https://github.com/openresty/resty-cli/archive/v${RESTY_CLI_VERSION}.tar.gz"; \
wget -O resty_cli.tgz "$url"; \
@ -57,7 +58,7 @@ RUN set -eux; \
resty -V
RUN luarocks install luacheck \
&& luarocks install busted 2.0.rc12
&& luarocks install busted
RUN go get github.com/onsi/ginkgo/ginkgo \
&& go get golang.org/x/lint/golint