news/Dockerfile

9 lines
173 B
Docker
Raw Normal View History

2022-12-24 12:52:18 +08:00
FROM python:3.8.5
COPY . .
RUN pip install -r requirements.txt -i http://pypi.douban.com/simple/ --trusted-host pypi.douban.com
EXPOSE 8888
CMD ["python", "api/main.py"]