update latest versions

Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
Jess Frazelle 2017-03-22 12:29:18 -07:00
parent e949f2da54
commit 12c06870f3
No known key found for this signature in database
GPG Key ID: 18F3685C0022BFF3
7 changed files with 43 additions and 8 deletions

View File

@ -6,8 +6,7 @@ ENV GOPATH /go
#ENV GO15VENDOREXPERIMENT 1
RUN apk --no-cache add \
ca-certificates \
curl
ca-certificates
ENV CONSUL_VERSION v0.7.5

View File

@ -37,6 +37,8 @@ get_latest() {
dir="golang-softhsm2"
elif [[ "$dir" == "bazel" ]]; then
dir="gitiles"
elif [[ "$dir" == "oauth2_proxy" ]]; then
dir="oauth2-proxy"
fi
local current=$(cat "${dir}/Dockerfile" | grep -m 1 VERSION | awk '{print $(NF)}')
@ -59,6 +61,7 @@ curl/curl
opendnssec/SoftHSMv2
irssi/irssi
zyedidia/micro
bitly/oauth2_proxy
JonnyWong16/plexpy
powershell/powershell
ricochet-im/ricochet

32
oauth2-proxy/Dockerfile Normal file
View File

@ -0,0 +1,32 @@
FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
RUN apk --no-cache add \
ca-certificates
ENV OAUTH2_VERSION v2.1
RUN buildDeps=' \
go \
git \
gcc \
g++ \
libc-dev \
libgcc \
' \
set -x \
&& apk --no-cache add --repository https://dl-3.alpinelinux.org/alpine/edge/community $buildDeps \
&& go get github.com/bitly/oauth2_proxy \
&& cd /go/src/github.com/bitly/oauth2_proxy \
&& git checkout "${OAUTH2_VERSION}" \
&& go build \
&& mv oauth2_proxy /usr/bin/ \
&& apk del $buildDeps \
&& rm -rf /go \
&& echo "Build complete."
ENTRYPOINT [ "oauth2_proxy" ]

View File

@ -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.2
ENV VAGRANT_VERSION 1.9.3
ADD https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb /src/vagrant_${VAGRANT_VERSION}_x86_64.deb

View File

@ -5,8 +5,7 @@ ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go
RUN apk --no-cache add \
ca-certificates \
curl
ca-certificates
ENV VAULT_VERSION v0.6.5

View File

@ -51,8 +51,8 @@ RUN useradd --create-home --home-dir $HOME user \
&& chown -R user:user $HOME
# https://code.visualstudio.com/Download
ENV CODE_VERSION 1.9.1-1486597190
ENV CODE_COMMIT f9d0c687ff2ea7aabd85fb9a43129117c0ecf519
ENV CODE_VERSION 1.10.2-1488981323
ENV CODE_COMMIT 8076a19fdcab7e1fc1707952d652f0bb6c6db331
# download the source
RUN buildDeps=' \

View File

@ -6,14 +6,16 @@ RUN apt-get update && apt-get install -y \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENV WATCHMAN_VERSION v4.7.0
ENV WATCHMAN_VERSION v4.8.0-rc1
RUN buildDeps=' \
autoconf \
automake \
clang \
git \
libtool \
make \
pkg-config \
' \
&& set -x \
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \