diff --git a/atom/Dockerfile b/atom/Dockerfile index c21b76a..de9d9dc 100644 --- a/atom/Dockerfile +++ b/atom/Dockerfile @@ -42,7 +42,7 @@ RUN apt-get update && apt-get install -y \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* -ENV ATOM_VERSION 1.12.5 +ENV ATOM_VERSION 1.12.6 # download the source RUN buildDeps=' \ diff --git a/consul/Dockerfile b/consul/Dockerfile index 5bc0898..50a5024 100644 --- a/consul/Dockerfile +++ b/consul/Dockerfile @@ -9,7 +9,7 @@ RUN apk --no-cache add \ ca-certificates \ curl -ENV CONSUL_VERSION v0.7.0 +ENV CONSUL_VERSION v0.7.1 RUN buildDeps=' \ bash \ diff --git a/curl/Dockerfile b/curl/Dockerfile index d217488..a35a6a0 100644 --- a/curl/Dockerfile +++ b/curl/Dockerfile @@ -13,7 +13,7 @@ RUN apk add --no-cache \ nghttp2 \ openssl -ENV CURL_VERSION 7.50.3 +ENV CURL_VERSION 7.51.0 RUN set -x \ && apk add --no-cache --virtual .build-deps \ diff --git a/latest-versions.sh b/latest-versions.sh index 3b6b8ca..21e1f1d 100755 --- a/latest-versions.sh +++ b/latest-versions.sh @@ -28,7 +28,7 @@ get_latest() { local dir=${repo#*/} local current=$(cat "${dir}/Dockerfile" | grep -m 1 VERSION | awk '{print $(NF)}') - if [[ "$tag" =~ "$current" ]]; then + if [[ "$tag" =~ "$current" ]] || [[ "$name" =~ "$current" ]]; then echo -e "\e[36m${dir}:\e[39m current ${current} | ${tag} | ${name}" else echo -e "\e[31m${dir}:\e[39m current ${current} | ${tag} | ${name} | https://github.com/${repo}/releases" diff --git a/micro/Dockerfile b/micro/Dockerfile index 0b33ad6..bc172ec 100644 --- a/micro/Dockerfile +++ b/micro/Dockerfile @@ -4,7 +4,7 @@ MAINTAINER Christian Koep ENV PATH /go/bin:/usr/local/go/bin:$PATH ENV GOPATH /go -ENV MICRO_VERSION v1.1.0 +ENV MICRO_VERSION v1.1.2 RUN buildDeps=' \ go \ diff --git a/plexpy/Dockerfile b/plexpy/Dockerfile index cdbfff6..5865bb5 100644 --- a/plexpy/Dockerfile +++ b/plexpy/Dockerfile @@ -14,7 +14,7 @@ RUN apk add --no-cache \ python # Get the source -ENV PLEXPY_VERSION v1.4.12 +ENV PLEXPY_VERSION v1.4.16 RUN set -x \ && apk add --no-cache --virtual .build-deps \ git \ diff --git a/powershell/Dockerfile b/powershell/Dockerfile index 43b6560..72e6c8b 100644 --- a/powershell/Dockerfile +++ b/powershell/Dockerfile @@ -1,7 +1,7 @@ FROM debian:sid MAINTAINER Christian Koep -ENV POWERSHELL_VERSION 6.0.0-alpha.10 +ENV POWERSHELL_VERSION 6.0.0-alpha.13 RUN apt-get update && apt-get install -y \ ca-certificates \ diff --git a/vagrant/Dockerfile b/vagrant/Dockerfile index 139f8b8..c7dbbf3 100644 --- a/vagrant/Dockerfile +++ b/vagrant/Dockerfile @@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y \ --no-install-recommends \ && rm -rf /var/lib/apt/lists/* -ENV VAGRANT_VERSION 1.8.6 +ENV VAGRANT_VERSION 1.9.0 ADD https://releases.hashicorp.com/vagrant/${VAGRANT_VERSION}/vagrant_${VAGRANT_VERSION}_x86_64.deb /src/vagrant_${VAGRANT_VERSION}_x86_64.deb