turfrun/Dockerfile

10 lines
127 B
Docker
Raw Permalink Normal View History

2025-04-08 21:26:33 -06:00
FROM python:3.12
2025-04-08 21:55:58 -06:00
WORKDIR /app
COPY requirements.txt .
2025-04-08 21:26:33 -06:00
RUN pip install -r requirements.txt
2025-04-08 21:55:58 -06:00
COPY . .
2025-04-08 21:26:33 -06:00
CMD ["python", "app.py"]