Skip to content

Commit

Permalink
Merge pull request #220 from VisLab/develop
Browse files Browse the repository at this point in the history
Updating the flask binding in docker
  • Loading branch information
VisLab authored Oct 3, 2024
2 parents ff3fd76 + d0b3755 commit efa62d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy_hed/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ ENV HEDTOOLS_CONFIG_CLASS=config.ProductionConfig
EXPOSE 33000

# Run the Flask application with Gunicorn, binding to port 33000
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:33000", "hedtools.hedweb.wsgi:application"]
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:33000", "runserver:app"]
2 changes: 1 addition & 1 deletion deploy_hed_dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ ENV HEDTOOLS_CONFIG_CLASS=config.ProductionConfig
EXPOSE 33004

# Run the Flask application with Gunicorn, binding to port 33004
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:33004", "hedtools.hedweb.wsgi:application"]
CMD ["gunicorn", "-w", "4", "-b", "0.0.0.0:33004", "runserver:app"]

0 comments on commit efa62d8

Please sign in to comment.