Suppress wget output
This commit is contained in:
@@ -10,9 +10,9 @@ RUN pip install --upgrade pip
|
|||||||
RUN pip install -r requirements.txt
|
RUN pip install -r requirements.txt
|
||||||
|
|
||||||
RUN echo 'Downloading the latest failure detection AI model in Darknet format...'
|
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 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
|
ADD rootfs/app /app
|
||||||
ENV FLASK_APP server.py
|
ENV FLASK_APP server.py
|
||||||
|
|||||||
Reference in New Issue
Block a user