Skip to content

Commit

Permalink
Merge pull request #224 from VisLab/develop
Browse files Browse the repository at this point in the history
Another experiment with loopback
  • Loading branch information
VisLab authored Oct 3, 2024
2 parents 923efd4 + ec33e81 commit 87c8327
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions deploy_hed/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update && apt-get install -y \
git \
musl-dev \
libxslt-dev \
libxml2-dev &&
libxml2-dev && \
# Upgrade pip and install requirements
pip3 install --upgrade pip && \
pip3 install -r requirements.txt
Expand Down Expand Up @@ -40,4 +40,4 @@ ENV HEDTOOLS_CONFIG_CLASS=config.ProductionConfig
EXPOSE 33000

# Run the Flask application with Gunicorn, binding to port 33000
CMD ["gunicorn", "-w", "4", "-b", "127.0.0.0:33000", "runserver:app"]
CMD ["gunicorn", "-w", "4", "-b", "127.0.0.1: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 @@ -41,4 +41,4 @@ ENV HEDTOOLS_CONFIG_CLASS=config.ProductionConfig
EXPOSE 33004

# Run the Flask application with Gunicorn, binding to port 33004
CMD ["gunicorn", "-w", "4", "-b", "127.0.0.0:33004", "runserver:app"]
CMD ["gunicorn", "-w", "4", "-b", "127.0.0.1:33004", "runserver:app"]

0 comments on commit 87c8327

Please sign in to comment.