update versions

Signed-off-by: Jess Frazelle <acidburn@jessfraz.com>
This commit is contained in:
Jess Frazelle 2019-08-30 17:52:57 -07:00
parent 3f419866d0
commit 03c295ba6d
No known key found for this signature in database
GPG Key ID: C0B444E6A3EFD4C1
14 changed files with 16 additions and 14 deletions

View File

@ -10,7 +10,7 @@ RUN apk --no-cache add \
git \ git \
make make
ENV COREDNS_VERSION v1.5.2 ENV COREDNS_VERSION v1.6.2
RUN git clone --depth 1 --branch ${COREDNS_VERSION} https://github.com/coredns/coredns /go/src/github.com/coredns/coredns RUN git clone --depth 1 --branch ${COREDNS_VERSION} https://github.com/coredns/coredns /go/src/github.com/coredns/coredns

View File

@ -12,12 +12,14 @@ RUN apk add --no-cache \
npm \ npm \
yarn yarn
ENV FLEET_VERSION 2.2.0 ENV FLEET_VERSION 2.3.0
RUN git clone --depth 1 --branch "${FLEET_VERSION}" https://github.com/kolide/fleet.git /go/src/github.com/kolide/fleet RUN git clone --depth 1 --branch "${FLEET_VERSION}" https://github.com/kolide/fleet.git /go/src/github.com/kolide/fleet
WORKDIR /go/src/github.com/kolide/fleet WORKDIR /go/src/github.com/kolide/fleet
ENV GO111MODULE on
RUN make deps generate RUN make deps generate
RUN CGO_ENABLED=0 go build -a -tags netgo -ldflags '-w -extldflags "-static"' -o /usr/bin/fleet ./cmd/fleet RUN CGO_ENABLED=0 go build -a -tags netgo -ldflags '-w -extldflags "-static"' -o /usr/bin/fleet ./cmd/fleet

View File

@ -1,7 +1,7 @@
FROM python:2-alpine FROM python:2-alpine
ENV PATH $PATH:/usr/src/google-cloud-sdk/bin ENV PATH $PATH:/usr/src/google-cloud-sdk/bin
ENV CLOUD_SDK_DOCKER_VERSION 255.0.0 ENV CLOUD_SDK_DOCKER_VERSION 260.0.0
RUN set -x \ RUN set -x \
&& apk add --no-cache --virtual .build-deps \ && apk add --no-cache --virtual .build-deps \

View File

@ -12,7 +12,7 @@ RUN adduser -u 1001 -D user \
ENV LANG C.UTF-8 ENV LANG C.UTF-8
ENV IRSSI_VERSION 1.2.1 ENV IRSSI_VERSION 1.2.2
# https://otr.cypherpunks.ca/index.php#downloads # https://otr.cypherpunks.ca/index.php#downloads
ENV LIB_OTR_VERSION 4.1.1 ENV LIB_OTR_VERSION 4.1.1
# https://github.com/cryptodotis/irssi-otr/releases # https://github.com/cryptodotis/irssi-otr/releases

View File

@ -29,7 +29,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 NOMAD_VERSION v0.9.4-rc1 ENV NOMAD_VERSION v0.9.5
RUN go get github.com/hashicorp/nomad RUN go get github.com/hashicorp/nomad

View File

@ -8,14 +8,13 @@ RUN apk --no-cache add \
ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV PATH /go/bin:/usr/local/go/bin:$PATH
ENV GOPATH /go ENV GOPATH /go
ENV OAUTH2_PROXY_VERSION v3.2.0 ENV OAUTH2_PROXY_VERSION v4.0.0
RUN go get github.com/golang/dep/cmd/dep RUN go get github.com/golang/dep/cmd/dep
RUN go get github.com/pusher/oauth2_proxy || true \ RUN go get github.com/pusher/oauth2_proxy || true \
&& cd /go/src/github.com/pusher/oauth2_proxy \ && cd /go/src/github.com/pusher/oauth2_proxy \
&& git checkout "${OAUTH2_PROXY_VERSION}" \ && git checkout "${OAUTH2_PROXY_VERSION}" \
&& dep ensure --vendor-only \
&& go build . \ && go build . \
&& mv oauth2_proxy /usr/bin/ && mv oauth2_proxy /usr/bin/

View File

@ -12,7 +12,7 @@ RUN apk add --no-cache \
make \ make \
zip zip
ENV PACKER_VERSION v1.4.2 ENV PACKER_VERSION v1.4.3
RUN go get github.com/hashicorp/packer RUN go get github.com/hashicorp/packer

View File

@ -15,7 +15,7 @@ RUN apk add --no-cache \
py-pip py-pip
# Get the source # Get the source
ENV PLEXPY_VERSION v2.1.32 ENV PLEXPY_VERSION v2.1.33
RUN git clone https://github.com/Tautulli/Tautulli.git /opt/plexpy \ RUN git clone https://github.com/Tautulli/Tautulli.git /opt/plexpy \
&& ( \ && ( \
cd /opt/plexpy \ cd /opt/plexpy \

View File

@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y \
dirmngr \ dirmngr \
gnupg \ gnupg \
--no-install-recommends \ --no-install-recommends \
&& apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 931FF8E79F0876134EDDBDCCA87FF9DF48BF1C90 \ && apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4773BD5E130D1D45 \
&& echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list \ && echo "deb http://repository.spotify.com stable non-free" >> /etc/apt/sources.list.d/spotify.list \
&& apt-get update && apt-get install -y \ && apt-get update && apt-get install -y \
alsa-utils \ alsa-utils \

View File

@ -4,7 +4,7 @@ RUN apk add --no-cache \
lua5.1-cjson \ lua5.1-cjson \
luajit luajit
ENV NGINX_VERSION 1.17.2 ENV NGINX_VERSION 1.17.3
# https://github.com/simplresty/ngx_devel_kit/releases # https://github.com/simplresty/ngx_devel_kit/releases
ENV NGX_DEVEL_KIT_VERSION v0.3.1rc1 ENV NGX_DEVEL_KIT_VERSION v0.3.1rc1
# https://github.com/openresty/lua-nginx-module/releases # https://github.com/openresty/lua-nginx-module/releases

View File

@ -13,7 +13,7 @@ RUN apk add --no-cache \
musl-dev \ musl-dev \
zip zip
ENV TERRAFORM_VERSION v0.12.5 ENV TERRAFORM_VERSION v0.12.7
RUN go get github.com/hashicorp/terraform || true RUN go get github.com/hashicorp/terraform || true

View File

@ -88,7 +88,7 @@ RUN apt-get update && apt-get install -y \
# unifi version # unifi version
# From: https://www.ubnt.com/download/unifi/ # From: https://www.ubnt.com/download/unifi/
ENV UNIFI_VERSION "5.10.25" ENV UNIFI_VERSION "5.10.26"
# install unifi # install unifi
RUN apt-get update && apt-get install -y \ RUN apt-get update && apt-get install -y \

View File

@ -14,7 +14,7 @@ RUN apk add --no-cache \
yarn \ yarn \
zip zip
ENV VAULT_VERSION v1.2.0-rc1 ENV VAULT_VERSION v1.2.2
RUN go get github.com/hashicorp/vault RUN go get github.com/hashicorp/vault

View File

@ -41,6 +41,7 @@ RUN apt-get update && apt-get install -y \
libxcb-image0 \ libxcb-image0 \
libxcb-keysyms1 \ libxcb-keysyms1 \
libxcb-xtest0 \ libxcb-xtest0 \
libxtst6 \
libnss3 \ libnss3 \
libxss1 \ libxss1 \
sudo \ sudo \