14 lines
226 B
Docker
14 lines
226 B
Docker
|
|
FROM python:3.11
|
||
|
|
|
||
|
|
WORKDIR /app
|
||
|
|
|
||
|
|
COPY . /app
|
||
|
|
RUN pip3 config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple
|
||
|
|
RUN pip3 config set install.trusted-host mirrors.aliyun.com
|
||
|
|
RUN pip3 install -r requirements.txt
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|