14 lines
178 B
Docker
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"] |