latest versions

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-04-27 17:06:24 -04:00
parent 329b27eeeb
commit d2bb8fbcf3
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
8 changed files with 9 additions and 12 deletions

View File

@ -8,7 +8,7 @@ ENV GOPATH /go
RUN apk --no-cache add \ RUN apk --no-cache add \
ca-certificates ca-certificates
ENV CONSUL_VERSION v0.8.0 ENV CONSUL_VERSION v0.8.1
RUN buildDeps=' \ RUN buildDeps=' \
bash \ bash \

View File

@ -13,7 +13,7 @@ RUN apk add --no-cache \
nghttp2 \ nghttp2 \
openssl openssl
ENV CURL_VERSION 7.53.1 ENV CURL_VERSION 7.54.0
RUN set -x \ RUN set -x \
&& apk add --no-cache --virtual .build-deps \ && apk add --no-cache --virtual .build-deps \

View File

@ -1,4 +1,6 @@
#!/bin/bash #!/bin/bash
set -e
set -o pipefail
repo=$1 repo=$1
if [[ "$repo" != *.git ]]; then if [[ "$repo" != *.git ]]; then

View File

@ -7,7 +7,7 @@ ENV GOPATH /go
RUN apk --no-cache add \ RUN apk --no-cache add \
ca-certificates ca-certificates
ENV OAUTH2_VERSION v2.1 ENV OAUTH2_VERSION v2.2
RUN buildDeps=' \ RUN buildDeps=' \
go \ go \

View File

@ -14,7 +14,7 @@ RUN apk add --no-cache \
python python
# Get the source # 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 \ RUN git clone https://github.com/drzoidberg33/plexpy.git /opt/plexpy \
&& ( \ && ( \
cd /opt/plexpy \ cd /opt/plexpy \

View File

@ -14,7 +14,7 @@ RUN apt-get update && apt-get install -y \
--no-install-recommends \ --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* && 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 ADD https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb /src/vagrant_${VAGRANT_VERSION}_x86_64.deb

View File

@ -2,10 +2,5 @@
set -e set -e
set -o pipefail set -o pipefail
VSCODE_COMMAND=/usr/bin/code su user -c /usr/share/code/bin/code
if [[ ! -f "${VSCODE_COMMAND}" ]]; then
>&2 echo "${VSCODE_COMMAND} does not exist"
exit 1
fi
su user -c "${VSCODE_COMMAND}"
sleep infinity sleep infinity

View File

@ -1,6 +1,6 @@
FROM java:8-alpine FROM java:8-alpine
ENV ZOOKEEPER_VERSION 3.4.9 ENV ZOOKEEPER_VERSION 3.4.10
ENV PATH $PATH:/opt/zookeeper/bin/ ENV PATH $PATH:/opt/zookeeper/bin/
# the start files for zookeeper use bash # the start files for zookeeper use bash