summaryrefslogtreecommitdiffstats
path: root/docker-files/alpine.Dockerfile
diff options
context:
space:
mode:
authornicolargo <nicolas@nicolargo.com>2022-10-17 23:15:34 +0200
committernicolargo <nicolas@nicolargo.com>2022-10-17 23:15:56 +0200
commitb6f56f416bb8c91f128493cc4d76a2ac8a2743b9 (patch)
tree7ba82724ab5dff8ceb6189a4be66c554e05abc56 /docker-files/alpine.Dockerfile
parent967ad5feddaf67fb4f84696bd56ff680fa9bd8d3 (diff)
Quick and dirty patch for #2155v3.3.0.1
Diffstat (limited to 'docker-files/alpine.Dockerfile')
-rw-r--r--docker-files/alpine.Dockerfile4
1 files changed, 4 insertions, 0 deletions
diff --git a/docker-files/alpine.Dockerfile b/docker-files/alpine.Dockerfile
index 874f74c9..90fe159e 100644
--- a/docker-files/alpine.Dockerfile
+++ b/docker-files/alpine.Dockerfile
@@ -34,7 +34,11 @@ RUN apk add --no-cache \
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