From b3c5d963310dabee4ff937ccaf7d9fa6c411db91 Mon Sep 17 00:00:00 2001 From: Mend Renovate Date: Mon, 11 Nov 2024 22:38:41 +0100 Subject: [PATCH] chore(deps): update docker (#1491) * chore(deps): update docker * Revert updates causing failures In a separate thread, we'll need to investigate why these updates are causing failures in the GitHub pull-request checks. For now, let's move forward with the updates that work. --------- Co-authored-by: Nim Jayawardena --- ai-ml/llm-finetuning-gemma/Dockerfile | 2 +- ai-ml/llm-serving-gemma/gradio/Dockerfile | 2 +- ai-ml/maxdiffusion-tpu/build/server/Dockerfile | 2 +- ai-ml/maxdiffusion-tpu/build/webapp/Dockerfile | 2 +- .../gke-vpa-recommendations/metrics-exporter/Dockerfile | 2 +- databases/cloud-pubsub/Dockerfile | 2 +- management/gitops-style-delivery/Dockerfile | 2 +- quickstarts/guestbook/redis-follower/Dockerfile | 2 +- quickstarts/languages/python/Dockerfile | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/ai-ml/llm-finetuning-gemma/Dockerfile b/ai-ml/llm-finetuning-gemma/Dockerfile index cb88bdce80..f6004b9685 100644 --- a/ai-ml/llm-finetuning-gemma/Dockerfile +++ b/ai-ml/llm-finetuning-gemma/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # [START gke_aiml_llm_finetune_gemma_single_node_docker] -FROM nvidia/cuda:12.6.1-runtime-ubuntu22.04 +FROM nvidia/cuda:12.6.2-runtime-ubuntu22.04 RUN apt-get update && \ apt-get -y --no-install-recommends install python3-dev gcc python3-pip git && \ diff --git a/ai-ml/llm-serving-gemma/gradio/Dockerfile b/ai-ml/llm-serving-gemma/gradio/Dockerfile index fdc870bc1b..e4325ced3f 100644 --- a/ai-ml/llm-serving-gemma/gradio/Dockerfile +++ b/ai-ml/llm-serving-gemma/gradio/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM python:3.12.7-alpine3.19 +FROM python:3.13.0-alpine3.19 ADD app/ . RUN pip install -r requirements.txt CMD ["python", "./app.py"] diff --git a/ai-ml/maxdiffusion-tpu/build/server/Dockerfile b/ai-ml/maxdiffusion-tpu/build/server/Dockerfile index 65bc8be48b..45984f3396 100644 --- a/ai-ml/maxdiffusion-tpu/build/server/Dockerfile +++ b/ai-ml/maxdiffusion-tpu/build/server/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.12-slim +FROM python:3.13-slim WORKDIR /app RUN apt-get -y update RUN apt-get -y install git diff --git a/ai-ml/maxdiffusion-tpu/build/webapp/Dockerfile b/ai-ml/maxdiffusion-tpu/build/webapp/Dockerfile index cf7472ab1c..1923f72c2d 100644 --- a/ai-ml/maxdiffusion-tpu/build/webapp/Dockerfile +++ b/ai-ml/maxdiffusion-tpu/build/webapp/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.12-slim +FROM python:3.13-slim WORKDIR /app COPY requirements.txt ./ RUN python -m pip install --upgrade pip diff --git a/cost-optimization/gke-vpa-recommendations/metrics-exporter/Dockerfile b/cost-optimization/gke-vpa-recommendations/metrics-exporter/Dockerfile index a2ad9e6a35..82f8c728d9 100644 --- a/cost-optimization/gke-vpa-recommendations/metrics-exporter/Dockerfile +++ b/cost-optimization/gke-vpa-recommendations/metrics-exporter/Dockerfile @@ -1,5 +1,5 @@ -FROM python:3.12 +FROM python:3.13 WORKDIR /app COPY requirements.txt requirements.txt RUN pip install -r requirements.txt diff --git a/databases/cloud-pubsub/Dockerfile b/databases/cloud-pubsub/Dockerfile index 1a373fa592..47cb47f2bb 100644 --- a/databases/cloud-pubsub/Dockerfile +++ b/databases/cloud-pubsub/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-slim +FROM python:3.13-slim COPY . . RUN pip install -r requirements.txt ENTRYPOINT ["python", "-u", "main.py"] diff --git a/management/gitops-style-delivery/Dockerfile b/management/gitops-style-delivery/Dockerfile index 86fd152d74..52b06e48bc 100644 --- a/management/gitops-style-delivery/Dockerfile +++ b/management/gitops-style-delivery/Dockerfile @@ -13,7 +13,7 @@ # limitations under the License. # [START gke_management_gitops_delivery_dockerfile] -FROM python:3.12-slim +FROM python:3.13-slim RUN pip install flask WORKDIR /app COPY app.py /app/app.py diff --git a/quickstarts/guestbook/redis-follower/Dockerfile b/quickstarts/guestbook/redis-follower/Dockerfile index 3e72d5556c..9d2c19d6dd 100644 --- a/quickstarts/guestbook/redis-follower/Dockerfile +++ b/quickstarts/guestbook/redis-follower/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM redis:6.2.14 +FROM redis:6.2.16 ADD run.sh /run.sh diff --git a/quickstarts/languages/python/Dockerfile b/quickstarts/languages/python/Dockerfile index 02e5fc3aae..99dbe43a3e 100644 --- a/quickstarts/languages/python/Dockerfile +++ b/quickstarts/languages/python/Dockerfile @@ -15,7 +15,7 @@ # [START gke_quickstarts_languages_python_dockerfile] # Use the official lightweight Python image. # https://hub.docker.com/_/python -FROM python:3.12-slim +FROM python:3.13-slim # Copy local code to the container image. ENV APP_HOME /app