Files
Stock-trading-programming/app/Dockerfile
T
2026-05-14 15:14:50 +09:00

7 lines
145 B
Docker

FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "main.py"]