stock-monitor/dokcer/DockerFile
2025-11-20 15:27:11 +08:00

7 lines
185 B
Plaintext

FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt # 禁用缓存减小体积
COPY . .
EXPOSE 8000
CMD ["python3","./run.py"]