diff --git a/deploy_hed/Dockerfile b/deploy_hed/Dockerfile index 2716990..0174f98 100644 --- a/deploy_hed/Dockerfile +++ b/deploy_hed/Dockerfile @@ -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"] diff --git a/deploy_hed_dev/Dockerfile b/deploy_hed_dev/Dockerfile index 847bfd4..4226ed4 100644 --- a/deploy_hed_dev/Dockerfile +++ b/deploy_hed_dev/Dockerfile @@ -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"]