This commit is contained in:
2025-10-27 21:11:31 +02:00
parent 0c040a40f6
commit aa6a8f9e71
63 changed files with 4558 additions and 0 deletions

31
UI_V2/Dockerfile Normal file
View File

@@ -0,0 +1,31 @@
# Slim Python image
FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
# System deps for pip & curl (for healthcheck)
RUN apt-get update && apt-get install -y --no-install-recommends \
build-essential curl \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
# Ensure persistent folders exist
RUN mkdir -p /app/instance /app/assets
# Default port
ENV FLET_PORT=8080
EXPOSE 8080
# Health check
HEALTHCHECK --interval=30s --timeout=3s --retries=3 CMD curl -fsS http://127.0.0.1:8080/ || exit 1
# Run entrypoint to create superuser and start the app
ENTRYPOINT ["sh", "-c", "python create_super_user.py && python main.py"]