File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,8 @@ RUN apt-get install -y python3 python3-pip \
81
81
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1 \
82
82
&& cd /tmp && curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
83
83
&& python get-pip.py \
84
- && python -m pip install ansible
84
+ && python -m pip install ansible \
85
+ && python -m pip install awscli
85
86
86
87
# install rust
87
88
RUN export RUSTPATH=/opt/rust \
@@ -127,6 +128,11 @@ RUN apt-get install -y -qq clang cmake ninja-build pkg-config libgtk-3-dev
127
128
# install browser chromium
128
129
RUN apt-get install -y -qq chromium-browser
129
130
131
+ # install cli53
132
+ RUN export ARCH=`dpkg --print-architecture`; \
133
+ curl -sSfL https://github.com/barnybug/cli53/releases/download/0.8.18/cli53-linux-${ARCH} -o /usr/local/bin/cli53 \
134
+ && chmod +x /usr/local/bin/cli53
135
+
130
136
# clean cache install
131
137
RUN rm -rf /var/cache/* && rm -rf /tmp/*
132
138
You can’t perform that action at this time.
0 commit comments