From 3d9e1ff6827981cdf01f25a1acfbbd51502fad4f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 8 Feb 2024 19:00:53 +0000 Subject: [PATCH] chore(deps): update rust docker tag to v1.76 --- distribution/docker/alpine.Dockerfile | 2 +- distribution/docker/debian.Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/distribution/docker/alpine.Dockerfile b/distribution/docker/alpine.Dockerfile index 831e4f279..7118bef54 100644 --- a/distribution/docker/alpine.Dockerfile +++ b/distribution/docker/alpine.Dockerfile @@ -30,7 +30,7 @@ RUN bun run build ############ BINARY -FROM --platform=${TARGETPLATFORM} rust:1.75-alpine3.19 AS build +FROM --platform=${TARGETPLATFORM} rust:1.76-alpine3.19 AS build # We use the `protobuf` package instead of `protobuf-dev` since we vendor `google/protobuf` in the `protos/` # directory and we use `prost-types` which Prost does on each release for the well-known google.protobuf.* types. diff --git a/distribution/docker/debian.Dockerfile b/distribution/docker/debian.Dockerfile index fbec367d2..feee2d6ce 100644 --- a/distribution/docker/debian.Dockerfile +++ b/distribution/docker/debian.Dockerfile @@ -28,7 +28,7 @@ COPY web . RUN bun run build -FROM --platform=${TARGETPLATFORM} rust:1.75-slim-bullseye AS build +FROM --platform=${TARGETPLATFORM} rust:1.76-slim-bullseye AS build ENV DEBIAN_FRONTEND=noninteractive