This commit is contained in:
zhousha
2025-08-06 15:38:55 +08:00
parent 4916ad0fe0
commit 55a67e817e
193 changed files with 51647 additions and 1 deletions

11
starting_kit/Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM harbor.4pd.io/inf/base-python3.8-ubuntu:1.1.0
WORKDIR /workspace
ADD ./requirements.txt /workspace
RUN pip install -r ./requirements.txt -i https://nexus.4pd.io/repository/pypi-all/simple --trusted-host nexus.4pd.io --extra-index-url https://mirrors.aliyun.com/pypi/simple/ \
&& pip cache purge
ADD . /workspace
CMD ["python", "main.py"]