Created
June 2, 2019 22:01
-
-
Save sergsoares/dc431eabebf8ad1df9de975fa8310f2d to your computer and use it in GitHub Desktop.
Simple container with terraform
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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