From b4da93e1cfae38ee1c8fbb0e752bf2124c8ea83c Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 16 Sep 2024 18:04:28 +0200 Subject: [PATCH] Add CARGO_LOG build arg Add the `CARGO_LOG` build argument into the build environment so that _if_ it is specified we can then see some stuff --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 0b0083e..c65971c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM docker.io/library/rust:1-bookworm as builder +ARG CARGO_LOG RUN apt-get update \ && apt-get install -y cmake protobuf-compiler \ && rm -rf /var/lib/apt/lists/*