1
0
Эх сурвалжийг харах

fix missing requests lib in web deployment

Rodja Trappe 1 жил өмнө
parent
commit
14412d493b
2 өөрчлөгдсөн 2 нэмэгдсэн , 2 устгасан
  1. 1 1
      fly.dockerfile
  2. 1 1
      release.dockerfile

+ 1 - 1
fly.dockerfile

@@ -2,7 +2,7 @@ FROM python:3.11.3-slim
 
 LABEL maintainer="Zauberzeug GmbH <nicegui@zauberzeug.com>"
 
-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
 

+ 1 - 1
release.dockerfile

@@ -3,7 +3,7 @@ ARG VERSION
 
 LABEL maintainer="Zauberzeug GmbH <info@zauberzeug.com>"
 
-RUN python -m pip install nicegui==$VERSION itsdangerous isort docutils
+RUN python -m pip install nicegui==$VERSION itsdangerous isort docutils requests
 
 WORKDIR /app