🎉 init(init):初始化仓库
This commit is contained in:
9
dockerfile
Normal file
9
dockerfile
Normal file
@@ -0,0 +1,9 @@
|
||||
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
|
||||
Reference in New Issue
Block a user