2023-08-10 10:47:57 +08:00
|
|
|
FROM tiangolo/uwsgi-nginx-flask:python3.8-alpine
|
2022-02-05 22:59:45 +08:00
|
|
|
COPY requirements.txt /app
|
2023-08-10 10:47:57 +08:00
|
|
|
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/
|
2023-08-10 10:47:57 +08:00
|
|
|
COPY ./app/ /app/
|