9 lines
128 B
Plaintext
9 lines
128 B
Plaintext
FROM python:3.11
|
|
|
|
COPY src /app
|
|
|
|
WORKDIR /app
|
|
|
|
RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
|
|
|