initial commit

This commit is contained in:
2022-08-28 13:02:29 +08:00
commit 184eb978b7
12 changed files with 84 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM python:3.10
ARG PYPI_MIRROR=https://pypi.tuna.tsinghua.edu.cn/simple
ENV PYPI_MIRROR=${PYPI_MIRROR}
ADD . /app
WORKDIR /app
RUN ./scripts/setup-env.sh
CMD /app/venv/bin/waitress-serve app:app