dockerize and fix relative URLs for /slideshow path prefix

This commit is contained in:
Johannes
2026-05-03 21:11:52 +02:00
parent 0428784789
commit 01190086a5
4 changed files with 29 additions and 6 deletions

8
Dockerfile Normal file
View File

@@ -0,0 +1,8 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN mkdir -p Pictures
EXPOSE 5000
CMD ["python", "Slideshow.py"]