From e0dc8672172bb989894ac0ee587af8c4ac54574c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 13 Jan 2025 22:27:18 +0000 Subject: [PATCH] Bump rust from 1.83.0-alpine to 1.84.0-alpine (#3601) Bumps rust from 1.83.0-alpine to 1.84.0-alpine. --- updated-dependencies: - dependency-name: rust dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- Dockerfile | 2 +- Dockerfile.interop | 2 +- Dockerfile.interop_aggregator | 4 ++-- Dockerfile.sqlx | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 615580951..beabed309 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.83.0-alpine AS chef +FROM rust:1.84.0-alpine AS chef ENV CARGO_INCREMENTAL=0 RUN apk add --no-cache libc-dev cmake make RUN cargo install cargo-chef --version 0.1.60 && \ diff --git a/Dockerfile.interop b/Dockerfile.interop index 519cc00b6..868359e19 100644 --- a/Dockerfile.interop +++ b/Dockerfile.interop @@ -1,7 +1,7 @@ ARG BINARY ARG PROFILE=release -FROM rust:1.83.0-alpine AS chef +FROM rust:1.84.0-alpine AS chef ENV CARGO_INCREMENTAL=0 RUN apk add --no-cache libc-dev cmake make RUN cargo install cargo-chef --version 0.1.60 && \ diff --git a/Dockerfile.interop_aggregator b/Dockerfile.interop_aggregator index e58092b92..b77e72cee 100644 --- a/Dockerfile.interop_aggregator +++ b/Dockerfile.interop_aggregator @@ -1,6 +1,6 @@ ARG PROFILE=release -FROM rust:1.83.0-alpine AS chef +FROM rust:1.84.0-alpine AS chef ENV CARGO_INCREMENTAL=0 RUN apk add --no-cache libc-dev cmake make RUN cargo install cargo-chef --version 0.1.60 && \ @@ -60,7 +60,7 @@ COPY tools /src/tools COPY xtask /src/xtask RUN cargo build --features fpvec_bounded_l2 --profile $PROFILE -p janus_interop_binaries -FROM rust:1.83.0-alpine AS sqlx +FROM rust:1.84.0-alpine AS sqlx ENV CARGO_INCREMENTAL=0 ARG SQLX_VERSION=0.7.2 RUN apk add --no-cache libc-dev diff --git a/Dockerfile.sqlx b/Dockerfile.sqlx index 22392e8fc..6628fc79d 100644 --- a/Dockerfile.sqlx +++ b/Dockerfile.sqlx @@ -1,4 +1,4 @@ -FROM rust:1.83.0-alpine AS builder +FROM rust:1.84.0-alpine AS builder ENV CARGO_INCREMENTAL=0 ARG SQLX_VERSION RUN apk add libc-dev