Skip to content

Commit

Permalink
fix missing requests lib in web deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
rodja committed Jul 14, 2023
1 parent ba37a03 commit 14412d4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fly.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM python:3.11.3-slim

LABEL maintainer="Zauberzeug GmbH <[email protected]>"

RUN pip install itsdangerous prometheus_client isort docutils pandas plotly matplotlib
RUN pip install itsdangerous prometheus_client isort docutils pandas plotly matplotlib requests

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion release.dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ARG VERSION

LABEL maintainer="Zauberzeug GmbH <[email protected]>"

RUN python -m pip install nicegui==$VERSION itsdangerous isort docutils
RUN python -m pip install nicegui==$VERSION itsdangerous isort docutils requests

WORKDIR /app

Expand Down

0 comments on commit 14412d4

Please sign in to comment.