stock-monitor/dokcer/DockerFile
2025-11-20 17:07:45 +08:00

7 lines
183 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"]