Skip to content

Instantly share code, notes, and snippets.

@venturamarcelo
Created June 5, 2020 18:21
Show Gist options
  • Save venturamarcelo/ad3be6830eab38b7f34b515eac053010 to your computer and use it in GitHub Desktop.
Save venturamarcelo/ad3be6830eab38b7f34b515eac053010 to your computer and use it in GitHub Desktop.
FROM circleci/python
USER root
RUN apt-get update -y && \
apt-get install wget -y && \
apt-get install postgresql-client -y
# Install aws cli + bump2version
RUN pip install awscli bump2version --upgrade --user
ENV PATH=~/.local/bin:$PATH
# Install terraform
RUN wget https://releases.hashicorp.com/terraform/0.12.25/terraform_0.12.25_linux_amd64.zip
RUN unzip terraform_0.12.25_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