Skip to content

Commit

Permalink
latest versions
Browse files Browse the repository at this point in the history
Signed-off-by: Jess Frazelle <[email protected]>
  • Loading branch information
jessfraz committed Apr 27, 2017
1 parent 329b27e commit d2bb8fb
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 12 deletions.
2 changes: 1 addition & 1 deletion consul/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion curl/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 2 additions & 0 deletions gitserver/create_repo
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
#!/bin/bash
set -e
set -o pipefail

repo=$1
if [[ "$repo" != *.git ]]; then
Expand Down
2 changes: 1 addition & 1 deletion oauth2-proxy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion plexpy/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 \
Expand Down
2 changes: 1 addition & 1 deletion vagrant/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
7 changes: 1 addition & 6 deletions vscode/start.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion zookeeper/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit d2bb8fb

Please sign in to comment.