Skip to content

Commit

Permalink
Update python Docker tag
Browse files Browse the repository at this point in the history
  • Loading branch information
red-hat-konflux[bot] authored Jun 25, 2024
1 parent 78eedd8 commit b16c230
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion examples/pytorch/cpu-demo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8
FROM python:3.12

RUN pip3 install torch torchvision torchaudio --index-url https://download.pytorch.org/whl/cpu

Expand Down
2 changes: 1 addition & 1 deletion examples/pytorch/elastic/echo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-buster
FROM python:3.11-buster
WORKDIR /workspace
RUN pip install torch==1.13.1 numpy
# TODO Replace this with the PIP version when available
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9
FROM python:3.12

RUN pip install tensorflow==2.11.0 tensorflow_datasets==4.7.0

Expand Down
2 changes: 1 addition & 1 deletion examples/xgboost/lightgbm-dist/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ RUN git clone \
cd "${HOME}" && \
rm -rf LightGBM

FROM python:3.7
FROM python:3.12

COPY requirements.txt .
RUN pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion examples/xgboost/smoke-dist/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install python 3.6
FROM python:3.6
FROM python:3.12

RUN mkdir -p /opt/mlkube

Expand Down
2 changes: 1 addition & 1 deletion examples/xgboost/xgboost-dist/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Install python 3.6.
FROM python:3.6
FROM python:3.12

RUN mkdir -p /opt/mlkube

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/Dockerfile.conformance
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# Dockerfile for building the source code of conformance tests
FROM python:3.10-alpine
FROM python:3.12-alpine

WORKDIR /kubeflow/training-operator/sdk/python

Expand Down
2 changes: 1 addition & 1 deletion sdk/python/kubeflow/storage_initializer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Use an official Python runtime as a parent image
FROM python:3.11
FROM python:3.12

# Set the working directory in the container
WORKDIR /app
Expand Down

0 comments on commit b16c230

Please sign in to comment.