This commit is contained in:
2021-11-17 20:45:21 +00:00
parent ac89be52a4
commit d16b48657b

View File

@@ -1,5 +1,5 @@
FROM python:3.8-slim-buster as builder FROM python:3.8-slim-buster as builder
RUN virtualenv /opt/venv RUN python -m venv /opt/venv
RUN apt-get update && apt-get install -y build-essential RUN apt-get update && apt-get install -y build-essential
COPY requirements.txt . COPY requirements.txt .
RUN pip install uwsgi RUN pip install uwsgi