Merge branch 'john-david3:main' into main

This commit is contained in:
Christopher Ahern
2025-01-22 13:50:03 +00:00
committed by GitHub
4 changed files with 12 additions and 11 deletions

View File

@@ -14,8 +14,5 @@ COPY . .
ENV FLASK_APP=backend.blueprints.__init__
ENV FLASK_DEBUG=True
# Expose Flask's port
EXPOSE 5000
# Start the Flask app
CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0"]
CMD ["gunicorn", "-b", "0.0.0.0:5000", "blueprints.__init__:create_app()"]

View File

@@ -20,3 +20,4 @@ typing_extensions==4.12.2
urllib3==2.3.0
Werkzeug==3.1.3
WTForms==3.2.1
Gunicorn==20.1.0