Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save sergsoares/dc431eabebf8ad1df9de975fa8310f2d to your computer and use it in GitHub Desktop.

Select an option

Save sergsoares/dc431eabebf8ad1df9de975fa8310f2d to your computer and use it in GitHub Desktop.
Simple container with terraform
FROM ubuntu:18.04
RUN apt-get update
RUN apt-get install -y unzip
RUN apt-get install -y curl
RUN curl -O -L https://releases.hashicorp.com/terraform/0.11.13/terraform_0.11.13_linux_amd64.zip
RUN unzip terraform_0.11.13_linux_amd64.zip
RUN mv terraform /usr/local/bin
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment