emailhelper-api-v0.1/Dockerfile

7 lines
231 B
Docker
Raw Normal View History

2021-04-12 00:21:07 +08:00
FROM python:3.8
WORKDIR /usr/src/app/mail_auth
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"]