Skip to content
This repository has been archived by the owner on Mar 3, 2024. It is now read-only.

Commit

Permalink
Set wget --quiet in Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
caic99 committed Feb 26, 2024
1 parent 3ef55dd commit e22598c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions unidock_tools/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -28,4 +28,4 @@ RUN pip install tqdm
COPY . /opt/unidock_tools
RUN cd /opt/unidock_tools && \
pip install . && \
rm -r /opt/unidock_tools
rm -r /opt/unidock_tools

0 comments on commit e22598c

Please sign in to comment.