From ed230eb71a8d64f4c3668a266014d42dc71bb8df Mon Sep 17 00:00:00 2001 From: Sasha Gerrand Date: Fri, 31 Jan 2020 11:18:36 +0000 Subject: [PATCH] Install packages without caching Follows the method used earlier in the file for consistency and means that the apk cache directory doesn't need to be removed. --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index d8b7046..1df108f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,12 +17,11 @@ RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -a -tags netgo -o /go/bin/dro FROM alpine:3.9 -RUN apk -U add \ +RUN apk add --no-cache \ ca-certificates \ git \ wget \ - openssh-client && \ - rm -rf /var/cache/apk/* + openssh-client ARG terraform_version RUN wget -q https://releases.hashicorp.com/terraform/${terraform_version}/terraform_${terraform_version}_linux_amd64.zip -O terraform.zip && \