Suppress wget output

This commit is contained in:
2026-07-08 10:58:06 +02:00
parent 7bdf1e5df3
commit 66a3ddfb69
+2 -2
View File
@@ -10,9 +10,9 @@ RUN pip install --upgrade pip
RUN pip install -r requirements.txt
RUN echo 'Downloading the latest failure detection AI model in Darknet format...'
RUN wget -O model/model-weights.darknet $(cat model/model-weights.darknet.url | tr -d '\r')
RUN wget --no-verbose -O model/model-weights.darknet $(cat model/model-weights.darknet.url | tr -d '\r')
RUN echo 'Downloading the latest failure detection AI model in ONNX format...'
RUN wget -O model/model-weights.onnx $(cat model/model-weights.onnx.url | tr -d '\r')
RUN wget --no-verbose -O model/model-weights.onnx $(cat model/model-weights.onnx.url | tr -d '\r')
ADD rootfs/app /app
ENV FLASK_APP server.py