We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43e04f4 commit 8081758Copy full SHA for 8081758
Dockerfile.test-images
@@ -0,0 +1,11 @@
1
+FROM python:3.10
2
+
3
+# Download Terraform
4
+RUN apt-get update && \
5
+ apt-get install -y wget unzip gnupg software-properties-common && \
6
+ wget -O terraform.zip https://releases.hashicorp.com/terraform/1.12.1/terraform_1.12.1_linux_amd64.zip && \
7
+ unzip terraform.zip && mv terraform /usr/local/bin/ && \
8
+ rm terraform.zip && terraform -version
9
10
+COPY ../requirements/base.txt /tmp/requirements.txt
11
+RUN pip install -r /tmp/requirements.txt
0 commit comments