From 97eaec4deecc57c9393943c0d08acdd4de934090 Mon Sep 17 00:00:00 2001 From: gurkenhabicht Date: Tue, 23 Dec 2025 02:26:21 +0100 Subject: [PATCH] static and dynamic site are working again, dockerfile is working as well --- Dockerfile | 2 +- start.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1f8e8f9..e3155a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,7 @@ ENV POETRY_NO_INTERACTION=1 WORKDIR /app RUN git clone https://git.stefan.works/stefan/website.git . -RUN poetry install --only main # --no-root +RUN poetry install --only main --no-root RUN poetry run python -m scripts.patch_flask_frozen RUN poetry run python freezer.py diff --git a/start.sh b/start.sh index 85cb05f..5df8f3b 100755 --- a/start.sh +++ b/start.sh @@ -3,4 +3,4 @@ export FLASK_DEBUG=True export FLASK_APP=start_site.py -python3 -m flask run +poetry run python3 -m flask run