Files

10 lines
198 B
Docker
Raw Permalink Normal View History

2026-09-13 20:15:10 +01:00
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV DATA_DIR=/data PORT=8080
VOLUME /data
EXPOSE 8080
CMD ["python", "app.py"]