9 lines
219 B
Plaintext
9 lines
219 B
Plaintext
FROM 172.16.102.3:30648/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 |