From bc65eacf5e9294b36a2a7d4a04b6c4bfabb3cc46 Mon Sep 17 00:00:00 2001 From: tangowithfoxtrot <5676771+tangowithfoxtrot@users.noreply.github.com> Date: Mon, 12 Feb 2024 03:20:56 -0800 Subject: [PATCH] bump rust version to 1.76 --- crates/bws/Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/crates/bws/Dockerfile b/crates/bws/Dockerfile index d754946481..f135ba6147 100644 --- a/crates/bws/Dockerfile +++ b/crates/bws/Dockerfile @@ -1,7 +1,7 @@ ############################################### # Build stage # ############################################### -FROM --platform=$BUILDPLATFORM rust:1.73 AS build +FROM --platform=$BUILDPLATFORM rust:1.76 AS build # Docker buildx supplies the value for this arg ARG TARGETPLATFORM @@ -29,6 +29,3 @@ LABEL com.bitwarden.product="bitwarden" WORKDIR /usr/local/bin COPY --from=build /app/target/release/bws . COPY --from=build /etc/ssl/certs /etc/ssl/certs - -ENTRYPOINT ["bws"] -