From 863bf449f2cca4fa672a26a71493af02da123420 Mon Sep 17 00:00:00 2001 From: Marcelo Diop-Gonzalez Date: Fri, 4 Oct 2024 15:39:41 -0400 Subject: [PATCH] fix(tracing-server): fix Dockerfile It seems the rust buster image tags don't exist anymore, so this bumps it up one to bullseye. Also bumps the rust version to 1.81 to match up with what's in Cargo.toml, because otherwise that part will fail, too. --- tracing/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tracing/Dockerfile b/tracing/Dockerfile index 28e89771c0b..3ed1c7de3d3 100644 --- a/tracing/Dockerfile +++ b/tracing/Dockerfile @@ -1,4 +1,4 @@ -FROM rust:1.80-buster as builder +FROM rust:1.81-bullseye as builder ADD Cargo.toml /build/Cargo.toml ADD Cargo.lock /build/Cargo.lock @@ -6,6 +6,6 @@ ADD src /build/src WORKDIR /build RUN cargo build --release -FROM debian:buster-slim +FROM debian:bullseye-slim COPY --from=builder /build/target/release/near-tracing /app/near-tracing CMD ["/app/near-tracing"]