Skip to content

Commit 8ad31d3

Browse files
hunt3rihunt3ri
and
hunt3ri
authored
update dependencies, add boto3 (#1)
Co-authored-by: hunt3ri <[email protected]>
1 parent 07870c9 commit 8ad31d3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Dockerfile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# Create docker container with Terraform installed, and suite of tools to ease working with AWS
22
FROM python:3.10-bullseye
33

4-
ENV TERRAFORM_VERSION 1.0.10
4+
ENV TERRAFORM_VERSION 1.1.7
55
ENV TERRAFORM_URL https://releases.hashicorp.com/terraform/$TERRAFORM_VERSION/terraform_${TERRAFORM_VERSION}_linux_amd64.zip
66

7-
ENV PACKER_VERSION 1.7.8
7+
ENV PACKER_VERSION 1.7.10
88
ENV PACKER_URL https://releases.hashicorp.com/packer/$PACKER_VERSION/packer_${PACKER_VERSION}_linux_amd64.zip
99

1010
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 \
1515
vim
1616

1717
# Install Python Tools
18+
# Boto3 is required for ansible to talk to AWS
1819
RUN python -m pip install --upgrade pip
19-
RUN pip install ansible
20+
RUN pip install ansible boto3
2021

2122
# Install AWSCLI
2223
RUN curl -o /opt/awscliv2.zip $AWSCLI_URL && \

0 commit comments

Comments
 (0)