Initial commit

This commit is contained in:
root
2025-12-03 16:46:11 +00:00
commit 1612d10bb1
25 changed files with 145983 additions and 0 deletions

21
app/Dockerfile Normal file
View File

@@ -0,0 +1,21 @@
FROM python:3.9-slim
# Installation der Bildverarbeitungs-Abhängigkeiten (Wichtig für Pillow)
RUN apt-get update && apt-get install -y \
libjpeg-dev \
zlib1g-dev \
libfreetype6-dev \
liblcms2-dev \
libwebp-dev \
tcl-dev \
tk-dev \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]