hotapi/docker/Dockerfile
2025-08-25 16:26:01 +08:00

8 lines
207 B
Docker

# Python 应用示例
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt # 禁用缓存减小体积
COPY . .
EXPOSE 5000
CMD ["python3","./main.py"]