Browse Source

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.
pull/109/head
Sasha Gerrand 5 years ago
committed by GitHub
parent
commit
ed230eb71a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      Dockerfile

5
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 FROM alpine:3.9
RUN apk -U add \ RUN apk add --no-cache \
ca-certificates \ ca-certificates \
git \ git \
wget \ wget \
openssh-client && \ openssh-client
rm -rf /var/cache/apk/*
ARG terraform_version ARG terraform_version
RUN wget -q https://releases.hashicorp.com/terraform/${terraform_version}/terraform_${terraform_version}_linux_amd64.zip -O terraform.zip && \ RUN wget -q https://releases.hashicorp.com/terraform/${terraform_version}/terraform_${terraform_version}_linux_amd64.zip -O terraform.zip && \

Loading…
Cancel
Save