File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ RUN apt-get install -y git unzip python3-pip curl vim
12
12
13
13
RUN curl -s https://releases.hashicorp.com/terraform/1.9.8/terraform_1.9.8_linux_amd64.zip -o terraform.zip && \
14
14
unzip terraform.zip && \
15
- mv terraform /usr/local/bin/
15
+ mv terraform /usr/local/bin/ && \
16
+ rm -rf /terraform.zip
16
17
17
18
RUN echo 'alias python=python3.12' >> ~/.bashrc
18
19
@@ -23,7 +24,13 @@ RUN python3.12 -m pip install --upgrade setuptools wheel
23
24
24
25
RUN python3.12 -m pip install --upgrade pip
25
26
26
- RUN python3.12 -m pip install --upgrade awscli azure-cli
27
+ RUN python3.12 -m pip install --upgrade azure-cli
28
+
29
+ RUN curl https://awscli.amazonaws.com/awscli-exe-linux-x86_64-2.18.18.zip -o awscliv2.zip && \
30
+ unzip awscliv2.zip && \
31
+ ./aws/install --update && \
32
+ rm -rf /aws && \
33
+ rm -rf /awscliv2.zip
27
34
28
35
RUN git clone https://github.com/splunk/attack_range.git
29
36
You can’t perform that action at this time.
0 commit comments