From ccfb8f741b06a56b6109ea9d716f2a7be78b19ca Mon Sep 17 00:00:00 2001 From: Boppy Date: Thu, 10 Aug 2023 21:59:25 -0500 Subject: [PATCH] Fix for QUIC issue --- crates/standalone/Dockerfile | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/crates/standalone/Dockerfile b/crates/standalone/Dockerfile index 2247a3e860..86d23432ca 100644 --- a/crates/standalone/Dockerfile +++ b/crates/standalone/Dockerfile @@ -1,9 +1,8 @@ ARG CARGO_PROFILE=release FROM rust:1.70 AS chef -RUN rust_target=$(rustc -vV | awk '/^host:/{ print $2 }') && \ - curl https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-$rust_target.tgz -fL | tar xz -C $CARGO_HOME/bin -RUN cargo binstall -y cargo-chef@0.1.62 +RUN curl https://sh.rustup.rs -sSf | bash -s -- -y +RUN cargo install cargo-chef@0.1.56 WORKDIR /usr/src/app FROM chef AS planner @@ -14,8 +13,8 @@ FROM chef AS builder RUN apt-get update && apt-get install -y protobuf-compiler -RUN cargo binstall -y cargo-watch@8.4.0 -RUN cargo binstall -y flamegraph@0.6.2 +RUN cargo install cargo-watch@8.4.0 +RUN cargo install flamegraph@0.6.2 COPY --from=planner /usr/src/app/recipe.json .