mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-03-24 06:05:19 +01:00
update latest versions
Signed-off-by: Jess Frazelle <acidburn@google.com>
This commit is contained in:
parent
e949f2da54
commit
12c06870f3
@ -6,8 +6,7 @@ ENV GOPATH /go
|
|||||||
#ENV GO15VENDOREXPERIMENT 1
|
#ENV GO15VENDOREXPERIMENT 1
|
||||||
|
|
||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
ca-certificates \
|
ca-certificates
|
||||||
curl
|
|
||||||
|
|
||||||
ENV CONSUL_VERSION v0.7.5
|
ENV CONSUL_VERSION v0.7.5
|
||||||
|
|
||||||
|
@ -37,6 +37,8 @@ get_latest() {
|
|||||||
dir="golang-softhsm2"
|
dir="golang-softhsm2"
|
||||||
elif [[ "$dir" == "bazel" ]]; then
|
elif [[ "$dir" == "bazel" ]]; then
|
||||||
dir="gitiles"
|
dir="gitiles"
|
||||||
|
elif [[ "$dir" == "oauth2_proxy" ]]; then
|
||||||
|
dir="oauth2-proxy"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local current=$(cat "${dir}/Dockerfile" | grep -m 1 VERSION | awk '{print $(NF)}')
|
local current=$(cat "${dir}/Dockerfile" | grep -m 1 VERSION | awk '{print $(NF)}')
|
||||||
@ -59,6 +61,7 @@ curl/curl
|
|||||||
opendnssec/SoftHSMv2
|
opendnssec/SoftHSMv2
|
||||||
irssi/irssi
|
irssi/irssi
|
||||||
zyedidia/micro
|
zyedidia/micro
|
||||||
|
bitly/oauth2_proxy
|
||||||
JonnyWong16/plexpy
|
JonnyWong16/plexpy
|
||||||
powershell/powershell
|
powershell/powershell
|
||||||
ricochet-im/ricochet
|
ricochet-im/ricochet
|
||||||
|
32
oauth2-proxy/Dockerfile
Normal file
32
oauth2-proxy/Dockerfile
Normal 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" ]
|
@ -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.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
|
ADD https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb /src/vagrant_${VAGRANT_VERSION}_x86_64.deb
|
||||||
|
|
||||||
|
@ -5,8 +5,7 @@ ENV PATH /go/bin:/usr/local/go/bin:$PATH
|
|||||||
ENV GOPATH /go
|
ENV GOPATH /go
|
||||||
|
|
||||||
RUN apk --no-cache add \
|
RUN apk --no-cache add \
|
||||||
ca-certificates \
|
ca-certificates
|
||||||
curl
|
|
||||||
|
|
||||||
ENV VAULT_VERSION v0.6.5
|
ENV VAULT_VERSION v0.6.5
|
||||||
|
|
||||||
|
@ -51,8 +51,8 @@ RUN useradd --create-home --home-dir $HOME user \
|
|||||||
&& chown -R user:user $HOME
|
&& chown -R user:user $HOME
|
||||||
|
|
||||||
# https://code.visualstudio.com/Download
|
# https://code.visualstudio.com/Download
|
||||||
ENV CODE_VERSION 1.9.1-1486597190
|
ENV CODE_VERSION 1.10.2-1488981323
|
||||||
ENV CODE_COMMIT f9d0c687ff2ea7aabd85fb9a43129117c0ecf519
|
ENV CODE_COMMIT 8076a19fdcab7e1fc1707952d652f0bb6c6db331
|
||||||
|
|
||||||
# download the source
|
# download the source
|
||||||
RUN buildDeps=' \
|
RUN buildDeps=' \
|
||||||
|
@ -6,14 +6,16 @@ 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 WATCHMAN_VERSION v4.7.0
|
ENV WATCHMAN_VERSION v4.8.0-rc1
|
||||||
|
|
||||||
RUN buildDeps=' \
|
RUN buildDeps=' \
|
||||||
autoconf \
|
autoconf \
|
||||||
automake \
|
automake \
|
||||||
clang \
|
clang \
|
||||||
git \
|
git \
|
||||||
|
libtool \
|
||||||
make \
|
make \
|
||||||
|
pkg-config \
|
||||||
' \
|
' \
|
||||||
&& set -x \
|
&& set -x \
|
||||||
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
|
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
|
||||||
|
Loading…
x
Reference in New Issue
Block a user