tfse-admin-api-v0.2/Dockerfile

7 lines
232 B
Docker
Raw Normal View History

2021-12-31 14:51:41 +08:00
FROM python:3.8
WORKDIR /usr/src/app/tfse_admin
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt -i https://pypi.mirrors.ustc.edu.cn/simple
COPY . .
CMD ["gunicorn", "app:app", "-c", "./gunicorn.conf.py"]