Fixed incorrect location in run command

This commit is contained in:
2025-01-22 14:00:06 +00:00
parent c116d30d34
commit 716637138a

View File

@@ -15,4 +15,4 @@ ENV FLASK_APP=backend.blueprints.__init__
ENV FLASK_DEBUG=True ENV FLASK_DEBUG=True
# Start the Flask app # Start the Flask app
CMD ["gunicorn", "-b", "0.0.0.0:5000", "blueprints.__init__:create_app()"] CMD ["gunicorn", "-b", "0.0.0.0:5000", "backend.blueprints.__init__:create_app()"]