From cc62f4d504190d7f8ea85710fdc5272b0a9731cc Mon Sep 17 00:00:00 2001 From: Rob Lazzurs Date: Mon, 6 Jul 2020 10:28:04 +0100 Subject: [PATCH] Upgrading base container to latest gosu. Upgrading the base container to the latest version release of gosu. --- docker-base/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-base/Dockerfile b/docker-base/Dockerfile index 21b0e71bf1..2bd3a9e102 100644 --- a/docker-base/Dockerfile +++ b/docker-base/Dockerfile @@ -19,7 +19,7 @@ RUN addgroup atlantis && \ # Install dumb-init and gosu. ENV DUMB_INIT_VERSION=1.2.2 -ENV GOSU_VERSION=1.11 +ENV GOSU_VERSION=1.12 RUN apk add --no-cache ca-certificates gnupg curl git git-lfs unzip bash openssh libcap openssl && \ curl -L -s --output /bin/dumb-init "https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_amd64" && \ chmod +x /bin/dumb-init && \