From 7ef9faffd7c5c68cfec1adf2c014b6ff86edc119 Mon Sep 17 00:00:00 2001 From: Sandeep Nishad Date: Tue, 21 May 2024 19:35:41 +0530 Subject: [PATCH] chore(relay): update rust image to 1.63 Signed-off-by: Sandeep Nishad --- core/relay/Dockerfile.client | 4 ++-- core/relay/Dockerfile.driver | 4 ++-- core/relay/Dockerfile.server | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/core/relay/Dockerfile.client b/core/relay/Dockerfile.client index 82145d970..0becb6836 100644 --- a/core/relay/Dockerfile.client +++ b/core/relay/Dockerfile.client @@ -1,4 +1,4 @@ -FROM rust:1.62.1-slim-bullseye AS builder +FROM rust:1.63.1-slim-bullseye AS builder RUN apt-get update @@ -14,7 +14,7 @@ RUN rustup target add x86_64-unknown-linux-musl # on linux (debian), we can use the toolchain mentioned below also because # custom toolchains are not supported. # -RUN rustup component add rustfmt --toolchain 1.62.1-x86_64-unknown-linux-gnu +RUN rustup component add rustfmt --toolchain 1.63.1-x86_64-unknown-linux-gnu RUN mkdir -p /opt/relay COPY . /opt/relay diff --git a/core/relay/Dockerfile.driver b/core/relay/Dockerfile.driver index 1f523edd5..7034ae5d5 100644 --- a/core/relay/Dockerfile.driver +++ b/core/relay/Dockerfile.driver @@ -1,4 +1,4 @@ -FROM rust:1.62.1-slim-bullseye AS builder +FROM rust:1.63.1-slim-bullseye AS builder RUN apt-get update @@ -14,7 +14,7 @@ RUN rustup target add x86_64-unknown-linux-musl # on linux (debian), we can use the toolchain mentioned below also because # custom toolchains are not supported. # -RUN rustup component add rustfmt --toolchain 1.62.1-x86_64-unknown-linux-gnu +RUN rustup component add rustfmt --toolchain 1.63.1-x86_64-unknown-linux-gnu RUN mkdir -p /opt/relay COPY . /opt/relay diff --git a/core/relay/Dockerfile.server b/core/relay/Dockerfile.server index 5463b7387..9d04b00c4 100644 --- a/core/relay/Dockerfile.server +++ b/core/relay/Dockerfile.server @@ -1,4 +1,4 @@ -FROM rust:1.62.1-slim-bullseye AS builder +FROM rust:1.63.1-slim-bullseye AS builder RUN apt-get update @@ -14,7 +14,7 @@ RUN rustup target add x86_64-unknown-linux-musl # on linux (debian), we can use the toolchain mentioned below also because # custom toolchains are not supported. # -RUN rustup component add rustfmt --toolchain 1.62.1-x86_64-unknown-linux-gnu +RUN rustup component add rustfmt --toolchain 1.63.1-x86_64-unknown-linux-gnu RUN mkdir -p /opt/relay COPY . /opt/relay