-
Notifications
You must be signed in to change notification settings - Fork 183
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
build(docker): Bump dependencies #1618
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
FROM python:3.10-slim AS wheel-builder | ||
SHELL ["/bin/bash", "-l", "-c"] | ||
|
||
ARG POETRY_VERSION="1.7.1" | ||
ARG POETRY_VERSION="1.8.1" | ||
|
||
COPY ./hack/build-wheels.sh ./hack/build-wheels.sh | ||
COPY ./mlserver ./mlserver | ||
|
@@ -27,8 +27,8 @@ RUN pip install poetry==$POETRY_VERSION && \ | |
FROM registry.access.redhat.com/ubi9/ubi-minimal | ||
SHELL ["/bin/bash", "-c"] | ||
|
||
ARG PYTHON_VERSION=3.10.11 | ||
ARG CONDA_VERSION=23.3.1 | ||
ARG PYTHON_VERSION=3.10.12 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. quick question: Can we update python version - 3.11.6? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Good question! That would require a bit more testing than a minor version bump like this was. Out of curiosity, outside of it being better to be on a later version, are there particular things missing since it's a There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. yes, actually version incompatible with mlflow.pyfunc because in mlflow using 3.11.6 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @ask664: No update, unfortunately. I've raised this with others. You could try editing the Dockerfile [1] to bump it to [1] https://github.com/SeldonIO/MLServer/blob/master/Dockerfile#L1 |
||
ARG CONDA_VERSION=23.11.0 | ||
ARG MINIFORGE_VERSION=${CONDA_VERSION}-0 | ||
ARG RUNTIMES="all" | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
a minor question: do we also want to upgrade the lock files to this version of poetry?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ran it locally, and looks fine: