12 lines
166 B
Docker
Raw Normal View History

2024-03-27 13:31:27 +01:00
# Dockerfile
2025-02-24 23:25:49 +00:00
FROM python:3.13-slim
2024-03-27 13:31:27 +01:00
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
CMD ["python", "app.py"]