GreenTransPowerCalculate/Dockerfile

9 lines
255 B
Docker
Raw Normal View History

2025-04-27 17:25:43 +08:00
FROM python:3.10
WORKDIR /app
COPY . /app/
RUN pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/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"]