Merge remote-tracking branch 'origin/main'

This commit is contained in:
toine 2025-10-04 17:48:33 +02:00
commit 618b740588
4 changed files with 64 additions and 0 deletions

7
backend/Dockerfile Normal file
View file

@ -0,0 +1,7 @@
from python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 8887
CMD ["python", "app.py"]