turfrun/Dockerfile
Ian Burgess 289606db87 a
2025-04-08 21:55:58 -06:00

10 lines
127 B
Docker

FROM python:3.12
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]