Skip to content

Commit

Permalink
chore(deps): update docker (#1491)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
renovate-bot and NimJay authored Nov 11, 2024
1 parent ee6b8e6 commit b3c5d96
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion ai-ml/llm-finetuning-gemma/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Expand Down
2 changes: 1 addition & 1 deletion ai-ml/llm-serving-gemma/gradio/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
2 changes: 1 addition & 1 deletion ai-ml/maxdiffusion-tpu/build/server/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion ai-ml/maxdiffusion-tpu/build/webapp/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion databases/cloud-pubsub/Dockerfile
Original file line number Diff line number Diff line change
@@ -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"]
2 changes: 1 addition & 1 deletion management/gitops-style-delivery/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/guestbook/redis-follower/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion quickstarts/languages/python/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b3c5d96

Please sign in to comment.