2025-08-20 11:54:40 +01:00

14 lines
178 B
Docker

FROM python:3.13-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
RUN chmod +x run_server.sh
EXPOSE 9520
# 启动脚本
CMD ["./run_server.sh"]