9 lines
200 B
Plaintext
9 lines
200 B
Plaintext
FROM python:3.10.5
|
|
|
|
WORKDIR /app
|
|
RUN pip config set global.index-url https://mirrors.aliyun.com/pypi/simple
|
|
|
|
COPY . .
|
|
RUN pip install -r requirements.txt
|
|
ENTRYPOINT [ "python", "main.py" ]
|
|
EXPOSE 8001 |