Skip to content

Commit 5cdd511

Browse files
committed
feat(editor-server): Add aws-cli and cli53.
1 parent 8346529 commit 5cdd511

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

docker/editor-server/Dockerfile

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,8 @@ RUN apt-get install -y python3 python3-pip \
8181
&& update-alternatives --install /usr/bin/python python /usr/bin/python3.8 1 \
8282
&& cd /tmp && curl -sSL https://bootstrap.pypa.io/get-pip.py -o get-pip.py \
8383
&& python get-pip.py \
84-
&& python -m pip install ansible
84+
&& python -m pip install ansible \
85+
&& python -m pip install awscli
8586

8687
# install rust
8788
RUN export RUSTPATH=/opt/rust \
@@ -127,6 +128,11 @@ RUN apt-get install -y -qq clang cmake ninja-build pkg-config libgtk-3-dev
127128
# install browser chromium
128129
RUN apt-get install -y -qq chromium-browser
129130

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+
130136
# clean cache install
131137
RUN rm -rf /var/cache/* && rm -rf /tmp/*
132138

0 commit comments

Comments
 (0)