Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@qooba
Created October 24, 2022 13:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save qooba/6830757b55dc9d58b56fdc327282473c to your computer and use it in GitHub Desktop.
Save qooba/6830757b55dc9d58b56fdc327282473c to your computer and use it in GitHub Desktop.
Terraform intro
FROM ubuntu:latest
RUN apt update && apt install curl git vim -yq
RUN curl -sL https://aka.ms/InstallAzureCLIDeb | bash
RUN curl -LO https://releases.hashicorp.com/terraform/1.3.2/terraform_1.3.2_linux_386.zip 
RUN apt install unzip -yq && unzip terraform_1.3.2_linux_386.zip && mv terraform /usr/local/bin/ && rm terraform_1.3.2_linux_386.zip
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install curl git ssh cmake ack g++ tmux ncurses-dev -yq
RUN sh -c "$(curl -fsSL https://raw.githubusercontent.com/qooba/vim-python-ide/master/setup.sh)"
CMD /bin/bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment