diff --git a/Dockerfile b/Dockerfile index 6ac9876..a009d26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,9 +13,9 @@ RUN apt-get update && apt-get upgrade -y \ RUN mkdir /app WORKDIR /app -RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py37_23.1.0-1-Linux-x86_64.sh \ - && /bin/bash Miniconda3-py37_23.1.0-1-Linux-x86_64.sh -b -p /opt/conda \ - && rm Miniconda3-py37_23.1.0-1-Linux-x86_64.sh +RUN wget --quiet https://repo.anaconda.com/miniconda/Miniconda3-py38_23.5.2-0-Linux-x86_64.sh \ + && /bin/bash Miniconda3-py38_23.5.2-0-Linux-x86_64.sh -b -p /opt/conda \ + && rm Miniconda3-py38_23.5.2-0-Linux-x86_64.sh ENV PATH=/opt/conda/bin:$PATH