Skip to content

Instantly share code, notes, and snippets.

@TheMagoo73
Created August 6, 2019 14:06
Show Gist options
  • Save TheMagoo73/cdbe0691351ac49ca846baa0798d1b93 to your computer and use it in GitHub Desktop.
Save TheMagoo73/cdbe0691351ac49ca846baa0798d1b93 to your computer and use it in GitHub Desktop.
Terraform/CircleCI dockerfile
FROM alpine:3.10
RUN apk update
RUN apk add --no-cache wget openssh git bash tar gzip ca-certificates
RUN rm -rf /var/cache/apk/*
RUN wget --quiet https://releases.hashicorp.com/terraform/0.12.6/terraform_0.12.6_linux_amd64.zip \
&& unzip terraform_0.12.6_linux_amd64.zip \
&& mv terraform /usr/bin \
&& rm terraform_0.12.6_linux_amd64.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment