File tree 1 file changed +4
-3
lines changed
1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Create docker container with Terraform installed, and suite of tools to ease working with AWS
2
2
FROM python:3.10-bullseye
3
3
4
- ENV TERRAFORM_VERSION 1.0.10
4
+ ENV TERRAFORM_VERSION 1.1.7
5
5
ENV TERRAFORM_URL https://releases.hashicorp.com/terraform/$TERRAFORM_VERSION/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
6
6
7
- ENV PACKER_VERSION 1.7.8
7
+ ENV PACKER_VERSION 1.7.10
8
8
ENV PACKER_URL https://releases.hashicorp.com/packer/$PACKER_VERSION/packer_${PACKER_VERSION}_linux_amd64.zip
9
9
10
10
ENV AWSCLI_URL https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip
@@ -15,8 +15,9 @@ RUN apt-get update && apt-get install -y \
15
15
vim
16
16
17
17
# Install Python Tools
18
+ # Boto3 is required for ansible to talk to AWS
18
19
RUN python -m pip install --upgrade pip
19
- RUN pip install ansible
20
+ RUN pip install ansible boto3
20
21
21
22
# Install AWSCLI
22
23
RUN curl -o /opt/awscliv2.zip $AWSCLI_URL && \
You can’t perform that action at this time.
0 commit comments