fixin Dockerfile

This commit is contained in:
2021-11-23 06:07:36 +00:00
parent b207d85629
commit 90eb50048a
3 changed files with 12 additions and 7 deletions

View File

@@ -4,7 +4,7 @@ RUN apt-get update && apt-get install -y build-essential
COPY requirements.txt .
RUN python3 -m venv /opt/venv && \
. /opt/venv/bin/activate && \
pip3 install uwsgi && \
pip3 install uwsgi gevent && \
pip3 install -r requirements.txt
FROM python:3.8-slim-buster