From 6b6d2f2bbc75ca843b31c4cbc9042c6ddb01c0e4 Mon Sep 17 00:00:00 2001 From: tonkaew131 Date: Wed, 4 Jun 2025 13:27:13 +0700 Subject: [PATCH] Remove conda & apt-get upgrade --- Dockerfile | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2329e5b..dacb6e6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,14 +11,15 @@ ARG SINGULARITY_VERSION=4.3.1 ENV SINGULARITY_VERSION=${SINGULARITY_VERSION} RUN echo -e '\n\n\n' >> ~/.bashrc -RUN apt-get update && apt-get upgrade -y +RUN apt-get update +# RUN apt-get upgrade -y # Add conda -RUN mkdir -p ~/.miniconda3 && \ - wget https://repo.anaconda.com/miniconda/Miniconda3-${MINICONDA3_VERSION}-Linux-x86_64.sh -O ~/.miniconda3/miniconda.sh && \ - bash ~/.miniconda3/miniconda.sh -b -u -p ~/.miniconda3 && \ - rm ~/.miniconda3/miniconda.sh -RUN echo 'source ~/.miniconda3/bin/activate' >> ~/.bashrc +# RUN mkdir -p ~/.miniconda3 && \ +# wget https://repo.anaconda.com/miniconda/Miniconda3-${MINICONDA3_VERSION}-Linux-x86_64.sh -O ~/.miniconda3/miniconda.sh && \ +# bash ~/.miniconda3/miniconda.sh -b -u -p ~/.miniconda3 && \ +# rm ~/.miniconda3/miniconda.sh +# RUN echo 'source ~/.miniconda3/bin/activate' >> ~/.bashrc # Add Go RUN wget https://go.dev/dl/go${GO_VERSION}.linux-amd64.tar.gz && \