Initial commit: Wochenplaner Backend + Docker Setup

This commit is contained in:
Wochenplaner Deploy
2026-06-01 11:23:04 +00:00
commit e5f44112d0
7 changed files with 460 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
FROM python:3.12-slim
WORKDIR /app
# Kein Systemd, keine Ports 80/443 - alles clean nach Coolify-Regeln
COPY backend/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY backend/ .
RUN mkdir -p /app/data && chmod 777 /app/data
EXPOSE 8000
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8000"]