diff --git a/examples/batch/hdfs-argo-workflows/Dockerfile b/examples/batch/hdfs-argo-workflows/Dockerfile index 31b5ffb1ba..cbce1d8ac7 100644 --- a/examples/batch/hdfs-argo-workflows/Dockerfile +++ b/examples/batch/hdfs-argo-workflows/Dockerfile @@ -1,3 +1,3 @@ -FROM python:3.8 +FROM python:3.13 RUN pip install hdfs==2.5.8 ENV HDFSCLI_CONFIG /etc/hdfs/hdfscli.cfg diff --git a/examples/kubeflow/pipeline/pipeline_steps/data_downloader/Dockerfile b/examples/kubeflow/pipeline/pipeline_steps/data_downloader/Dockerfile index b61a95757d..42c05ddcc3 100644 --- a/examples/kubeflow/pipeline/pipeline_steps/data_downloader/Dockerfile +++ b/examples/kubeflow/pipeline/pipeline_steps/data_downloader/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.7-slim +FROM python:3.13-slim COPY . /microservice WORKDIR /microservice RUN pip install -r requirements.txt diff --git a/examples/pachyderm-cd4ml/RSIServing/Dockerfile b/examples/pachyderm-cd4ml/RSIServing/Dockerfile index dc5ac787c0..d000495b39 100644 --- a/examples/pachyderm-cd4ml/RSIServing/Dockerfile +++ b/examples/pachyderm-cd4ml/RSIServing/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim +FROM python:3.13-slim RUN pip install pandas==1.1.4 statsmodels==0.12.1 seldon-core==1.5.0 joblib==1.0.0 minio==7.0.0 WORKDIR /app ADD RSIModel.py /app/RSIModel.py diff --git a/examples/pachyderm-cd4ml/RSITraining/Dockerfile b/examples/pachyderm-cd4ml/RSITraining/Dockerfile index 49b6c95efb..beaf3a517b 100644 --- a/examples/pachyderm-cd4ml/RSITraining/Dockerfile +++ b/examples/pachyderm-cd4ml/RSITraining/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim +FROM python:3.13-slim RUN pip install pandas==1.1.4 statsmodels==0.12.1 joblib==1.0.0 WORKDIR /code ADD RSITrain.py /code/RSITrain.py diff --git a/examples/pachyderm-simple/iris-train-python-svm/Dockerfile b/examples/pachyderm-simple/iris-train-python-svm/Dockerfile index cce2397f2a..d47558d8b2 100644 --- a/examples/pachyderm-simple/iris-train-python-svm/Dockerfile +++ b/examples/pachyderm-simple/iris-train-python-svm/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.8-slim +FROM python:3.13-slim RUN pip install pandas==1.1.4 scikit-learn==0.23.2 WORKDIR /code ADD pytrain.py /code/pytrain.py