Fix nasty assert

This commit is contained in:
Leonardo Segala 2025-08-02 07:59:50 +02:00
parent a8d6279ef7
commit ebf3d29fa8
6 changed files with 14 additions and 12 deletions

View file

@ -12,5 +12,6 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 5000
CMD ["flask", "--app", "src.app", "run", "--debug", "--host=0.0.0.0"]
# CMD ["flask", "--app", "src.app", "run", "--debug", "--host=0.0.0.0"]
CMD ["python3", "src/app.py"]
# flask --app src.app run --host=0.0.0.0 --port=5001 --debug