9 lines
255 B
Docker
9 lines
255 B
Docker
|
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"]
|