Removed entrypoint as migration is handled by app

This commit is contained in:
2025-09-02 09:43:45 +02:00
parent 1f88bcf396
commit 3eb066922d
2 changed files with 1 additions and 10 deletions

View File

@@ -13,5 +13,4 @@ RUN chmod +x ./entrypoint.sh
ENV FLASK_APP=app.py
ENTRYPOINT ["./entrypoint.sh"]
CMD []
CMD ["flask", "run"]

View File

@@ -1,8 +0,0 @@
#!/bin/sh
set -ex
#echo "Running database migrations..."
#flask db upgrade
echo "Starting Flask app..."
python app.py