pv_forecasting/Dockerfile

10 lines
246 B
Docker
Raw Normal View History

2023-08-23 16:00:06 +08:00
FROM python:3.8
WORKDIR /app
ADD ./ /app/
RUN pip install --upgrade pip -i https://pypi.douban.com/simple/ --no-cache-dir
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple --no-cache-dir
CMD ["python3", "run.py"]