pull/34/head
dgtlmoon 2021-04-03 08:04:42 +02:00
rodzic 7109a17a8e
commit 0bb48cbd43
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -1,8 +1,8 @@
FROM python:3.8-slim
COPY requirements.txt /tmp/requirements.txt
RUN apt-get update && apt-get install -y gcc libc-dev libxslt-dev zlib1g-dev g++
RUN apt-get update && apt-get install -y gcc libc-dev libxslt-dev zlib1g-dev g++ --no-install-recommends && rm -rf /var/lib/apt/lists/*
RUN pip3 install -r /tmp/requirements.txt
RUN pip3 install --no-cache-dir -r /tmp/requirements.txt
RUN [ ! -d "/app" ] && mkdir /app