10k-viewer/Dockerfile
2026-08-19 21:18:31 -05:00

10 lines
207 B
Docker

FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
COPY templates/ templates/
COPY cache/ cache/
EXPOSE 5001
CMD ["python", "app.py"]