Skip to content

Instantly share code, notes, and snippets.

@voa2000
Forked from kaikousa/Dockerfile
Created November 10, 2022 18:12
Show Gist options
  • Save voa2000/d4f22c2989cab1888883bbf8cc96df81 to your computer and use it in GitHub Desktop.
Save voa2000/d4f22c2989cab1888883bbf8cc96df81 to your computer and use it in GitHub Desktop.
Install Terraform on Docker
FROM ubuntu:16.04
RUN apt-get update && apt-get install -y \
wget \
unzip \
&& rm -rf /var/lib/apt/lists/*
RUN wget --quiet https://releases.hashicorp.com/terraform/0.11.3/terraform_0.11.3_linux_amd64.zip \
&& unzip terraform_0.11.3_linux_amd64.zip \
&& mv terraform /usr/bin \
&& rm terraform_0.11.3_linux_amd64.zip
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment