Files
Stock-trading-programming/app/Dockerfile
T

7 lines
145 B
Docker
Raw Normal View History

2026-05-14 15:14:50 +09:00
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "main.py"]