From 03c295ba6d1b672d4c3386ca7672ad46f4ae12ac Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Fri, 30 Aug 2019 17:52:57 -0700 Subject: [PATCH] update versions Signed-off-by: Jess Frazelle --- coredns/Dockerfile | 2 +- fleet/Dockerfile | 4 +++- gcloud/Dockerfile | 2 +- irssi/Dockerfile | 2 +- nomad/Dockerfile | 2 +- oauth2-proxy/Dockerfile | 3 +-- packer/Dockerfile | 2 +- plexpy/Dockerfile | 2 +- spotify/Dockerfile | 2 +- telize/Dockerfile | 2 +- terraform/Dockerfile | 2 +- unifi/Dockerfile | 2 +- vault/Dockerfile | 2 +- zoom-us/Dockerfile | 1 + 14 files changed, 16 insertions(+), 14 deletions(-) diff --git a/coredns/Dockerfile b/coredns/Dockerfile index 91fabd3..8673470 100644 --- a/coredns/Dockerfile +++ b/coredns/Dockerfile @@ -10,7 +10,7 @@ RUN apk --no-cache add \ git \ 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 diff --git a/fleet/Dockerfile b/fleet/Dockerfile index 973ec5b..a6faca4 100644 --- a/fleet/Dockerfile +++ b/fleet/Dockerfile @@ -12,12 +12,14 @@ RUN apk add --no-cache \ npm \ 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 WORKDIR /go/src/github.com/kolide/fleet +ENV GO111MODULE on + RUN make deps generate RUN CGO_ENABLED=0 go build -a -tags netgo -ldflags '-w -extldflags "-static"' -o /usr/bin/fleet ./cmd/fleet diff --git a/gcloud/Dockerfile b/gcloud/Dockerfile index 0346d96..bbc5aa5 100644 --- a/gcloud/Dockerfile +++ b/gcloud/Dockerfile @@ -1,7 +1,7 @@ FROM python:2-alpine 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 \ && apk add --no-cache --virtual .build-deps \ diff --git a/irssi/Dockerfile b/irssi/Dockerfile index c967259..6344bbf 100644 --- a/irssi/Dockerfile +++ b/irssi/Dockerfile @@ -12,7 +12,7 @@ RUN adduser -u 1001 -D user \ ENV LANG C.UTF-8 -ENV IRSSI_VERSION 1.2.1 +ENV IRSSI_VERSION 1.2.2 # https://otr.cypherpunks.ca/index.php#downloads ENV LIB_OTR_VERSION 4.1.1 # https://github.com/cryptodotis/irssi-otr/releases diff --git a/nomad/Dockerfile b/nomad/Dockerfile index f826435..2a2d91a 100644 --- a/nomad/Dockerfile +++ b/nomad/Dockerfile @@ -29,7 +29,7 @@ RUN apt-get update && apt-get install -y \ --no-install-recommends \ && 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 diff --git a/oauth2-proxy/Dockerfile b/oauth2-proxy/Dockerfile index 868264e..78215c0 100644 --- a/oauth2-proxy/Dockerfile +++ b/oauth2-proxy/Dockerfile @@ -8,14 +8,13 @@ RUN apk --no-cache add \ ENV PATH /go/bin:/usr/local/go/bin:$PATH 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/pusher/oauth2_proxy || true \ && cd /go/src/github.com/pusher/oauth2_proxy \ && git checkout "${OAUTH2_PROXY_VERSION}" \ - && dep ensure --vendor-only \ && go build . \ && mv oauth2_proxy /usr/bin/ diff --git a/packer/Dockerfile b/packer/Dockerfile index f46e190..a4aade5 100644 --- a/packer/Dockerfile +++ b/packer/Dockerfile @@ -12,7 +12,7 @@ RUN apk add --no-cache \ make \ zip -ENV PACKER_VERSION v1.4.2 +ENV PACKER_VERSION v1.4.3 RUN go get github.com/hashicorp/packer diff --git a/plexpy/Dockerfile b/plexpy/Dockerfile index 27bc138..9247b2d 100644 --- a/plexpy/Dockerfile +++ b/plexpy/Dockerfile @@ -15,7 +15,7 @@ RUN apk add --no-cache \ py-pip # 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 \ && ( \ cd /opt/plexpy \ diff --git a/spotify/Dockerfile b/spotify/Dockerfile index 4edb738..02ae7b4 100644 --- a/spotify/Dockerfile +++ b/spotify/Dockerfile @@ -17,7 +17,7 @@ RUN apt-get update && apt-get install -y \ dirmngr \ gnupg \ --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 \ && apt-get update && apt-get install -y \ alsa-utils \ diff --git a/telize/Dockerfile b/telize/Dockerfile index bb1ecad..c874d6d 100644 --- a/telize/Dockerfile +++ b/telize/Dockerfile @@ -4,7 +4,7 @@ RUN apk add --no-cache \ lua5.1-cjson \ luajit -ENV NGINX_VERSION 1.17.2 +ENV NGINX_VERSION 1.17.3 # https://github.com/simplresty/ngx_devel_kit/releases ENV NGX_DEVEL_KIT_VERSION v0.3.1rc1 # https://github.com/openresty/lua-nginx-module/releases diff --git a/terraform/Dockerfile b/terraform/Dockerfile index 7746014..6343c73 100644 --- a/terraform/Dockerfile +++ b/terraform/Dockerfile @@ -13,7 +13,7 @@ RUN apk add --no-cache \ musl-dev \ zip -ENV TERRAFORM_VERSION v0.12.5 +ENV TERRAFORM_VERSION v0.12.7 RUN go get github.com/hashicorp/terraform || true diff --git a/unifi/Dockerfile b/unifi/Dockerfile index e1edc20..b59cefe 100644 --- a/unifi/Dockerfile +++ b/unifi/Dockerfile @@ -88,7 +88,7 @@ RUN apt-get update && apt-get install -y \ # unifi version # From: https://www.ubnt.com/download/unifi/ -ENV UNIFI_VERSION "5.10.25" +ENV UNIFI_VERSION "5.10.26" # install unifi RUN apt-get update && apt-get install -y \ diff --git a/vault/Dockerfile b/vault/Dockerfile index c5fed8c..266ddb4 100644 --- a/vault/Dockerfile +++ b/vault/Dockerfile @@ -14,7 +14,7 @@ RUN apk add --no-cache \ yarn \ zip -ENV VAULT_VERSION v1.2.0-rc1 +ENV VAULT_VERSION v1.2.2 RUN go get github.com/hashicorp/vault diff --git a/zoom-us/Dockerfile b/zoom-us/Dockerfile index 14f021f..8b46568 100644 --- a/zoom-us/Dockerfile +++ b/zoom-us/Dockerfile @@ -41,6 +41,7 @@ RUN apt-get update && apt-get install -y \ libxcb-image0 \ libxcb-keysyms1 \ libxcb-xtest0 \ + libxtst6 \ libnss3 \ libxss1 \ sudo \