From 314f3eeb45e4915c31718c0b8d01a91c398e1468 Mon Sep 17 00:00:00 2001 From: Chun Cai Date: Mon, 26 Feb 2024 17:41:38 +0800 Subject: [PATCH] Set `wget --quiet` in Dockerfile --- unidock_tools/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/unidock_tools/Dockerfile b/unidock_tools/Dockerfile index b4225d3..e6d0c14 100644 --- a/unidock_tools/Dockerfile +++ b/unidock_tools/Dockerfile @@ -9,13 +9,13 @@ ENV DEBIAN_FRONTEND noninteractive RUN apt-get clean && apt-get update \ && apt-get install -y build-essential zip unzip vim git wget -RUN wget -O conda.sh \ +RUN wget --quiet -O conda.sh \ https://github.com/conda-forge/miniforge/releases/latest/download/Miniforge3-$(uname)-$(uname -m).sh \ && bash conda.sh -b -p /opt/conda \ && rm conda.sh ENV PATH /opt/conda/bin:$PATH -RUN wget -O CDPKit.sh https://github.com/molinfo-vienna/CDPKit/releases/download/v1.1.0/CDPKit-1.1.0-Linux-x86_64.sh && \ +RUN wget --quiet -O CDPKit.sh https://github.com/molinfo-vienna/CDPKit/releases/download/v1.1.0/CDPKit-1.1.0-Linux-x86_64.sh && \ echo y | bash CDPKit.sh --cpack_skip_license --include-subdir && \ rm CDPKit.sh @@ -28,4 +28,4 @@ RUN pip install tqdm COPY . /opt/unidock_tools RUN cd /opt/unidock_tools && \ pip install . && \ - rm -r /opt/unidock_tools \ No newline at end of file + rm -r /opt/unidock_tools