From d2bb8fbcf30501b7b0fc971085137f521efb6435 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Thu, 27 Apr 2017 17:06:24 -0400 Subject: [PATCH] latest versions Signed-off-by: Jess Frazelle --- consul/Dockerfile | 2 +- curl/Dockerfile | 2 +- gitserver/create_repo | 2 ++ oauth2-proxy/Dockerfile | 2 +- plexpy/Dockerfile | 2 +- vagrant/Dockerfile | 2 +- vscode/start.sh | 7 +------ zookeeper/Dockerfile | 2 +- 8 files changed, 9 insertions(+), 12 deletions(-) diff --git a/consul/Dockerfile b/consul/Dockerfile index 1f18d38..35c2bf0 100644 --- a/consul/Dockerfile +++ b/consul/Dockerfile @@ -8,7 +8,7 @@ ENV GOPATH /go RUN apk --no-cache add \ ca-certificates -ENV CONSUL_VERSION v0.8.0 +ENV CONSUL_VERSION v0.8.1 RUN buildDeps=' \ bash \ diff --git a/curl/Dockerfile b/curl/Dockerfile index b957ef8..1f1bb49 100644 --- a/curl/Dockerfile +++ b/curl/Dockerfile @@ -13,7 +13,7 @@ RUN apk add --no-cache \ nghttp2 \ openssl -ENV CURL_VERSION 7.53.1 +ENV CURL_VERSION 7.54.0 RUN set -x \ && apk add --no-cache --virtual .build-deps \ diff --git a/gitserver/create_repo b/gitserver/create_repo index d78f2bf..404023f 100755 --- a/gitserver/create_repo +++ b/gitserver/create_repo @@ -1,4 +1,6 @@ #!/bin/bash +set -e +set -o pipefail repo=$1 if [[ "$repo" != *.git ]]; then diff --git a/oauth2-proxy/Dockerfile b/oauth2-proxy/Dockerfile index 5965ece..9e08d89 100644 --- a/oauth2-proxy/Dockerfile +++ b/oauth2-proxy/Dockerfile @@ -7,7 +7,7 @@ ENV GOPATH /go RUN apk --no-cache add \ ca-certificates -ENV OAUTH2_VERSION v2.1 +ENV OAUTH2_VERSION v2.2 RUN buildDeps=' \ go \ diff --git a/plexpy/Dockerfile b/plexpy/Dockerfile index 3017144..40170b1 100644 --- a/plexpy/Dockerfile +++ b/plexpy/Dockerfile @@ -14,7 +14,7 @@ RUN apk add --no-cache \ python # Get the source -ENV PLEXPY_VERSION v1.4.17 +ENV PLEXPY_VERSION v1.4.18 RUN git clone https://github.com/drzoidberg33/plexpy.git /opt/plexpy \ && ( \ cd /opt/plexpy \ diff --git a/vagrant/Dockerfile b/vagrant/Dockerfile index 28280d9..b915e35 100644 --- a/vagrant/Dockerfile +++ b/vagrant/Dockerfile @@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* -ENV VAGRANT_VERSION 1.9.3 +ENV VAGRANT_VERSION 1.9.4 ADD https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb /src/vagrant_${VAGRANT_VERSION}_x86_64.deb diff --git a/vscode/start.sh b/vscode/start.sh index cccebf9..079d1d0 100755 --- a/vscode/start.sh +++ b/vscode/start.sh @@ -2,10 +2,5 @@ set -e set -o pipefail -VSCODE_COMMAND=/usr/bin/code -if [[ ! -f "${VSCODE_COMMAND}" ]]; then - >&2 echo "${VSCODE_COMMAND} does not exist" - exit 1 -fi -su user -c "${VSCODE_COMMAND}" +su user -c /usr/share/code/bin/code sleep infinity diff --git a/zookeeper/Dockerfile b/zookeeper/Dockerfile index e75c348..cfe73fd 100644 --- a/zookeeper/Dockerfile +++ b/zookeeper/Dockerfile @@ -1,6 +1,6 @@ FROM java:8-alpine -ENV ZOOKEEPER_VERSION 3.4.9 +ENV ZOOKEEPER_VERSION 3.4.10 ENV PATH $PATH:/opt/zookeeper/bin/ # the start files for zookeeper use bash