From 558c90807b09b16757c88f2e50bdbd123d425f37 Mon Sep 17 00:00:00 2001 From: Leonard Kugis Date: Fri, 4 Sep 2026 04:01:49 +0200 Subject: Initial commit --- Dockerfile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Dockerfile (limited to 'Dockerfile') diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..7963438 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,18 @@ +FROM python:3.11-slim-bookworm + +RUN apt-get update && apt-get install -y --no-install-recommends \ + ffmpeg \ + squashfs-tools \ + cryptsetup-bin \ + && rm -rf /var/lib/apt/lists/* + +RUN pip install --no-cache-dir flask pillow jinja2 + +WORKDIR /app +COPY . . + +# Base directories (mount subdirs via docker-compose) +RUN mkdir -p /app/db /app/srcs /app/dats /app/imports + +EXPOSE 8080 +CMD ["python", "app.py"] \ No newline at end of file -- cgit v1.2.3