Skip to content

Commit 8081758

Browse files
committed
Dockerfile for Jenkins job for checking images
1 parent 43e04f4 commit 8081758

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

Dockerfile.test-images

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)