Skip to content

Commit f9c2a11

Browse files
authored
Use miniforge conda as Pyfunc ensembler service base image (#360)
* Use miniforge conda as Pyfunc ensembler service base image * Upgrade miniforge version for batch ensembling image
1 parent 67b74d0 commit f9c2a11

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

engines/pyfunc-ensembler-job/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ WORKDIR $HOME
7070
# Install miniconda
7171
ENV CONDA_DIR ${HOME}/miniconda3
7272
ENV PATH ${CONDA_DIR}/bin:$PATH
73-
ENV MINIFORGE_VERSION=4.14.0-0
73+
ENV MINIFORGE_VERSION=23.3.1-1
7474

7575
RUN wget --quiet https://github.com/conda-forge/miniforge/releases/download/${MINIFORGE_VERSION}/Miniforge3-${MINIFORGE_VERSION}-Linux-x86_64.sh -O miniconda.sh && \
7676
/bin/bash miniconda.sh -b -p ${CONDA_DIR} && \

engines/pyfunc-ensembler-service/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM continuumio/miniconda3 AS builder
1+
FROM condaforge/miniforge3:23.3.1-1 AS builder
22

33
ARG APP_NAME
44
ARG CONDA_ENV_NAME
@@ -17,4 +17,4 @@ RUN conda env create -f ./env-${PYTHON_VERSION}.yaml -n $CONDA_ENV_NAME && \
1717
rm -rf /root/.cache
1818

1919
# Install conda-pack:
20-
RUN conda install -c conda-forge conda-pack
20+
RUN conda install conda-pack

0 commit comments

Comments
 (0)