mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
latest versions
Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
parent
329b27eeeb
commit
d2bb8fbcf3
|
@ -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 \
|
||||||
|
|
|
@ -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 \
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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 \
|
||||||
|
|
|
@ -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 \
|
||||||
|
|
|
@ -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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user