diff --git a/Dockerfile b/Dockerfile index 660582391..83cbc7919 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# The runatlantis/atlantis-base image is described in the Dockerfile-base image. +# The runatlantis/atlantis-base is created by docker-base/Dockerfile. FROM runatlantis/atlantis-base:latest LABEL authors="Anubhav Mishra, Luke Kysow" diff --git a/Dockerfile-base b/docker-base/Dockerfile similarity index 79% rename from Dockerfile-base rename to docker-base/Dockerfile index 5ab29ff84..65a52e9cb 100644 --- a/Dockerfile-base +++ b/docker-base/Dockerfile @@ -14,12 +14,12 @@ ENV ATLANTIS_HOME_DIR=/home/atlantis ENV DUMB_INIT_VERSION=1.2.0 ENV GOSU_VERSION=1.10 RUN apk add --no-cache ca-certificates gnupg curl git unzip bash openssh libcap openssl && \ - curl -L -o -s /bin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v${DUMB_INIT_VERSION}/dumb-init_${DUMB_INIT_VERSION}_amd64 && \ + 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 && \ mkdir -p /tmp/build && \ cd /tmp/build && \ - curl -L -o -s gosu "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64" && \ - curl -L -o -s gosu.asc "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64.asc" && \ + curl -L -s --output gosu "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64" && \ + curl -L -s --output gosu.asc "https://github.com/tianon/gosu/releases/download/${GOSU_VERSION}/gosu-amd64.asc" && \ for server in $(shuf -e ipv4.pool.sks-keyservers.net \ hkp://p80.pool.sks-keyservers.net:80 \ keyserver.ubuntu.com \