We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7490d1 commit 6586929Copy full SHA for 6586929
dev.Dockerfile
@@ -10,6 +10,13 @@ RUN apt-get update && \
10
xsel \
11
xclip
12
13
+RUN apt-get update && apt-get install -y zip unzip curl \
14
+ && rm -rf /var/lib/apt/lists/* \
15
+ && curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" \
16
+ && unzip awscliv2.zip \
17
+ && ./aws/install \
18
+ && rm -rf aws awscliv2.zip
19
+
20
ENV POETRY_HOME=/opt/poetry
21
RUN curl -sSL https://install.python-poetry.org | python3 -
22
ENV PATH="/root/.local/bin:${POETRY_HOME}/bin:${PATH}"
0 commit comments