From 14412d493b72af7b140a18176c1a5132afe99305 Mon Sep 17 00:00:00 2001 From: Rodja Trappe Date: Fri, 14 Jul 2023 07:51:26 +0200 Subject: [PATCH] fix missing requests lib in web deployment --- fly.dockerfile | 2 +- release.dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fly.dockerfile b/fly.dockerfile index 3a3982595..5b6fb6bd6 100644 --- a/fly.dockerfile +++ b/fly.dockerfile @@ -2,7 +2,7 @@ FROM python:3.11.3-slim LABEL maintainer="Zauberzeug GmbH " -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 diff --git a/release.dockerfile b/release.dockerfile index 14eb0a5ba..57b4ff294 100644 --- a/release.dockerfile +++ b/release.dockerfile @@ -3,7 +3,7 @@ ARG VERSION LABEL maintainer="Zauberzeug GmbH " -RUN python -m pip install nicegui==$VERSION itsdangerous isort docutils +RUN python -m pip install nicegui==$VERSION itsdangerous isort docutils requests WORKDIR /app