Skip to content

Commit

Permalink
updates for sbml4humans
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaskoenig committed Aug 14, 2024
1 parent a3bc234 commit 9d0adfb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
# docker run -d --name mycontainer -p 80:80 -e MODULE_NAME="sbmlutils.report.api" -e VARIABLE_NAME="api" myimage
# docker run -d --name mycontainer -p 80:80 myimage
# -------------------------------------------------------------------------------------
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.9
FROM tiangolo/uvicorn-gunicorn-fastapi:python3.11

# Caching of python requirements
# COPY ./requirements.txt /code/requirements.txt
Expand All @@ -29,7 +29,7 @@ COPY ./LICENSE /code/LICENSE
WORKDIR /code

# Install sbmlutils
RUN pip install -e .
RUN pip install -e . --no-cache-dir --upgrade

ENV MODULE_NAME="sbmlutils.report.api"
ENV VARIABLE_NAME="api"
Expand Down
2 changes: 1 addition & 1 deletion docker-compose-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ services:
environment:
- API_BASE_URL=https://sbml4humans.de
restart: always
image: nginx:1.21.3
image: nginx:1.27.0
ports:
- 8084:80
volumes:
Expand Down

0 comments on commit 9d0adfb

Please sign in to comment.