This repository has been archived on 2026-04-11. You can view files and clone it, but cannot push or open issues/pull-requests.
2021-06-16 16:31:05 +08:00
|
|
|
FROM tiangolo/uwsgi-nginx-flask:python3.6
|
2022-02-05 22:59:45 +08:00
|
|
|
COPY requirements.txt /app
|
|
|
|
|
RUN pip3 install -r requirements.txt -i https://mirrors.aliyun.com/pypi/simple/
|
2021-06-16 16:31:05 +08:00
|
|
|
COPY ./app /app
|