diff --git a/python/batch-predictor/docker/base.Dockerfile b/python/batch-predictor/docker/base.Dockerfile index 77b2c413a..ea51d3901 100644 --- a/python/batch-predictor/docker/base.Dockerfile +++ b/python/batch-predictor/docker/base.Dockerfile @@ -71,7 +71,7 @@ WORKDIR ${HOME} # Install miniconda ENV CONDA_DIR ${HOME}/miniconda3 ENV PATH ${CONDA_DIR}/bin:$PATH -ENV MINIFORGE_VERSION=4.14.0-0 +ENV MINIFORGE_VERSION=23.3.1-1 RUN wget --quiet https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Miniforge3-${MINIFORGE_VERSION}-Linux-x86_64.sh -O miniconda.sh && \ /bin/bash miniconda.sh -b -p ${CONDA_DIR} && \ diff --git a/python/pyfunc-server/docker/base.Dockerfile b/python/pyfunc-server/docker/base.Dockerfile index 0ecff726e..1cbdf14aa 100644 --- a/python/pyfunc-server/docker/base.Dockerfile +++ b/python/pyfunc-server/docker/base.Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM condaforge/miniforge3:4.14.0-0 +FROM condaforge/miniforge3:23.3.1-1 ARG PYTHON_VERSION diff --git a/python/sdk/docs/Dockerfile b/python/sdk/docs/Dockerfile index e2111f9e8..02c1b7d63 100644 --- a/python/sdk/docs/Dockerfile +++ b/python/sdk/docs/Dockerfile @@ -12,11 +12,11 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM continuumio/miniconda3 +FROM condaforge/miniforge3:23.3.1-1 RUN apt-get -qq update \ -&& apt-get -y install vim make wget curl \ -&& conda install -c conda-forge pandoc=1.19.2 + && apt-get -y install vim make wget curl \ + && conda install pandoc=1.19.2 COPY . /tmp/merlin-sdk WORKDIR /tmp/merlin-sdk/docs diff --git a/python/sdk/docs/README.md b/python/sdk/docs/README.md index 4b92bd321..1c0d2e78d 100644 --- a/python/sdk/docs/README.md +++ b/python/sdk/docs/README.md @@ -9,7 +9,7 @@ pip install -r requirements_docs.txt Install `pandoc` ```bash -conda install -c conda-forge pandoc=1.19.2 +conda install pandoc=1.19.2 ``` Generate doc