Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:splunk/attack_range into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Patrick Bareiss committed Dec 6, 2024
2 parents f39f17a + b046af2 commit c46c88c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ RUN apt-get install -y git unzip python3-pip curl vim

RUN curl -s https://releases.hashicorp.com/terraform/1.9.8/terraform_1.9.8_linux_amd64.zip -o terraform.zip && \
unzip terraform.zip && \
mv terraform /usr/local/bin/
mv terraform /usr/local/bin/ && \
rm -rf /terraform.zip

RUN echo 'alias python=python3.12' >> ~/.bashrc

Expand All @@ -23,7 +24,13 @@ RUN python3.12 -m pip install --upgrade setuptools wheel

RUN python3.12 -m pip install --upgrade pip

RUN python3.12 -m pip install --upgrade awscli azure-cli
RUN python3.12 -m pip install --upgrade azure-cli

RUN curl https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.18.18.zip -o awscliv2.zip && \
unzip awscliv2.zip && \
./aws/install --update && \
rm -rf /aws && \
rm -rf /awscliv2.zip

RUN git clone https://github.com/splunk/attack_range.git

Expand Down

0 comments on commit c46c88c

Please sign in to comment.