install curl

This commit is contained in:
Mylloon 2021-08-06 14:11:11 +02:00
parent c5c41fab4e
commit 5e3d5ad13f

View file

@ -3,7 +3,8 @@ FROM python:3.8.6-slim
COPY requirements.txt . COPY requirements.txt .
RUN pip install -r requirements.txt RUN pip install -r requirements.txt
RUN curl -so - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \ RUN apt install -y --no-install-recommands curl \
curl -so - https://adoptopenjdk.jfrog.io/adoptopenjdk/api/gpg/key/public | apt-key add - \
add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ \ add-apt-repository --yes https://adoptopenjdk.jfrog.io/adoptopenjdk/deb/ \
apt update && \ apt update && \
apt install -y --no-install-recommands adoptopenjdk-11-openj9 apt install -y --no-install-recommands adoptopenjdk-11-openj9