summaryrefslogtreecommitdiffstats
path: root/docker-files/debian.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'docker-files/debian.Dockerfile')
-rw-r--r--docker-files/debian.Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/docker-files/debian.Dockerfile b/docker-files/debian.Dockerfile
index 531c5104..b8fbe540 100644
--- a/docker-files/debian.Dockerfile
+++ b/docker-files/debian.Dockerfile
@@ -31,7 +31,11 @@ RUN apt-get update && \
FROM build as buildRequirements
ARG PYTHON_VERSION
COPY requirements.txt .
+COPY webui-requirements.txt .
RUN pip3 install --no-cache-dir --user -r requirements.txt
+# Minimal means no webui, but it break what is done previously (see #2155)
+# So install the webui requirements...
+RUN pip3 install --no-cache-dir --user -r webui-requirements.txt
# As minimal image we want to monitor others docker containers
RUN pip3 install --no-cache-dir --user docker