Skip to content

Commit

Permalink
Run apt-get update before trying to install `wget
Browse files Browse the repository at this point in the history
Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Oct 5, 2023
1 parent a682f56 commit 891daa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion images/create-env/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FROM quay.io/bioconda/base-glibc-debian-bash as build
WORKDIR /tmp/work
COPY --from=bioconda-build-env /tmp/requirements.txt ./
COPY install-conda print-env-activate create-env ./
RUN apt-get install -y wget && wget -o ./miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-$(uname -m).sh
RUN apt-get update && apt-get install -y wget && wget -o ./miniconda.sh https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-$(uname -m).sh

RUN ./install-conda ./requirements.txt /opt/create-env

Expand Down

0 comments on commit 891daa4

Please sign in to comment.