第一次提交

This commit is contained in:
2026-03-13 16:40:08 +08:00
commit 0a49bcfb2d
277 changed files with 61890 additions and 0 deletions

13
deploy-control/Dockerfile Normal file
View File

@ -0,0 +1,13 @@
FROM python:3.11-slim
RUN apt-get update \
&& apt-get install -y --no-install-recommends docker.io \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY server.py /app/server.py
EXPOSE 8090
CMD ["python", "/app/server.py"]