Remove old stuff has project has been reworked in django

This commit is contained in:
Gérald Colangelo
2026-04-02 11:21:29 +02:00
parent 85de9781d7
commit 7710a876df
84 changed files with 0 additions and 10404 deletions

View File

@@ -1,17 +0,0 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pybabel compile -d translations 2>/dev/null || true
RUN chmod +x entrypoint.sh
ENV FLASK_APP=app
EXPOSE 5000
ENTRYPOINT ["./entrypoint.sh"]