소스 검색

fix missing requests lib in web deployment

Rodja Trappe 1 년 전
부모
커밋
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