Skip to content

Commit

Permalink
Address flakiness on 'mlserver build' tests (#1363)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Gonzalez-Martin authored Aug 31, 2023
1 parent f27bf6e commit dcd0ad6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mlserver/cli/constants.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
DockerfileName = "Dockerfile"
DockerfileTemplate = """
FROM continuumio/miniconda3:22.11.1 AS env-builder
FROM continuumio/miniconda3:23.5.2-0 AS env-builder
SHELL ["/bin/bash", "-c"]
ARG MLSERVER_ENV_NAME="mlserver-custom-env" \\
MLSERVER_ENV_TARBALL="./envs/base.tar.gz"
RUN conda config --add channels conda-forge && \\
conda install conda-libmamba-solver && \\
conda install conda-libmamba-solver==23.7.0 && \\
conda config --set solver libmamba && \\
conda install conda-pack
Expand Down

0 comments on commit dcd0ad6

Please sign in to comment.