Skip to content

Commit

Permalink
Update python Docker tag to v3.13
Browse files Browse the repository at this point in the history
Signed-off-by: red-hat-konflux <126015336+red-hat-konflux[bot]@users.noreply.github.com>
  • Loading branch information
red-hat-konflux[bot] authored Oct 11, 2024
1 parent 9951c1f commit a2a33de
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Use the official lightweight Python image.
# https://hub.docker.com/_/python
FROM python:3.7-slim
FROM python:3.13-slim

ENV APP_HOME /app
WORKDIR $APP_HOME
Expand Down
2 changes: 1 addition & 1 deletion docs/samples/explanation/aix/mnist/rfserver/rf.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.7
FROM python:3.13

COPY . .
RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir kserve
Expand Down
2 changes: 1 addition & 1 deletion docs/samples/kafka/transformer.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.13-slim

RUN apt-get update && apt-get install -y libglib2.0-0
RUN pip install --no-cache-dir --upgrade pip && pip install --no-cache-dir kserve
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.13-slim

COPY driver_transformer driver_transformer
WORKDIR driver_transformer
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.13-slim
RUN pip install --upgrade pip && pip install "feast[gcp]~=0.30.0" "feast[redis]~=0.30.0" "feast[aws]~=0.30.0"
ENV FEAST_USAGE=False
EXPOSE 6566
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim
FROM python:3.13-slim
RUN pip install --upgrade pip && pip install "feast[gcp]~=0.30.0" "feast[redis]~=0.30.0" "feast[aws]~=0.30.0"
WORKDIR feature_store_initializer
COPY feature_store_initializer_entrypoint.sh feature_store_initializer_entrypoint.sh
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.9-slim-bullseye
FROM python:3.13-slim-bullseye
WORKDIR /code
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
Expand Down

0 comments on commit a2a33de

Please sign in to comment.