0
0
Fork 0
EnglishPal/Dockerfile

6 lines
198 B
Docker
Raw Normal View History

FROM tiangolo/uwsgi-nginx-flask:python3.8-alpine
2022-02-05 22:59:45 +08:00
COPY requirements.txt /app
RUN pip3 install -U pip
2022-02-05 22:59:45 +08:00
RUN pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
COPY ./app/ /app/