第一次提交
This commit is contained in:
13
deploy-control/Dockerfile
Normal file
13
deploy-control/Dockerfile
Normal 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"]
|
||||
Reference in New Issue
Block a user