diff --git a/Dockerfile b/Dockerfile index d5274b8..3775baa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,12 +1,12 @@ # BUILD CONTAINER -FROM rust:1.73 as build +FROM rust:1.76 as build + +ENV CARGO_NET_GIT_FETCH_WITH_CLI=true RUN apt-get update && apt-get install -y ca-certificates \ && rm -rf /var/lib/apt/lists/* -ENV CARGO_NET_GIT_FETCH_WITH_CLI=true - RUN USER=root cargo new --bin anifunnel # Build dependencies separately for layer caching.