Skip to content

Commit

Permalink
chore(deps): update docker
Browse files Browse the repository at this point in the history
  • Loading branch information
renovate-bot committed Dec 11, 2024
1 parent 28dad38 commit 7d4ec4f
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 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.2-runtime-ubuntu22.04
FROM nvidia/cuda:12.6.3-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/t5-model-serving/client-app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM python:3.11.10-alpine
FROM python:3.13.0-alpine

ARG PORT=8050
ENV PORT=${PORT}
Expand Down
2 changes: 1 addition & 1 deletion cost-optimization/gke-scheduled-autoscaler/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /go/src/custom-metric-exporter
COPY * ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /export .
Expand Down
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 golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
COPY * ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /sd-dummy-exporter
Expand Down
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 golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
COPY * ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /prometheus-dummy-exporter
Expand Down
2 changes: 1 addition & 1 deletion observability/distributed-tracing/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#See the License for the specific language governing permissions and
#limitations under the License.

FROM golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /crud
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o /http-app
Expand Down
2 changes: 1 addition & 1 deletion observability/workload-metrics/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 golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
COPY * ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /workload-metrics
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/hello-app-cdn/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 golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
RUN go mod init hello-app-cdn
COPY *.go ./
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/hello-app-redis/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 golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
RUN go mod init hello-app-redis
COPY * ./
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/hello-app-tls/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 golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
RUN go mod init hello-app-tls
COPY *.go ./
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/hello-app/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# limitations under the License.

# [START gke_quickstarts_hello_app_dockerfile]
FROM golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
RUN go mod init hello-app
COPY *.go ./
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/languages/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
# Use the offical Go image to create a build artifact.
# This is based on Debian and sets the GOPATH to /go.
# https://hub.docker.com/_/golang
FROM golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app

# Initialize a new Go module.
Expand Down
2 changes: 1 addition & 1 deletion quickstarts/languages/php/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
# [START gke_quickstarts_languages_php_dockerfile]
# Use the official PHP 7.4 image.
# https://hub.docker.com/_/php
FROM php:8.3-apache
FROM php:8.4-apache

# Copy local code to the container image.
COPY index.php /var/www/html/
Expand Down
2 changes: 1 addition & 1 deletion security/wi-secrets/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 golang:1.23.2 as builder
FROM golang:1.23.4 as builder
WORKDIR /app
COPY *.go go.mod go.sum ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /wi-secrets
Expand Down

0 comments on commit 7d4ec4f

Please sign in to comment.