From 8e54c0d815246831b4a46b20d22eb8a1b5610d0e Mon Sep 17 00:00:00 2001 From: Simon Ungar Felding <45149055+simonfelding@users.noreply.github.com> Date: Mon, 17 Feb 2025 18:28:00 +0100 Subject: [PATCH] add build arg version --- build/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/Dockerfile b/build/Dockerfile index 7b1427f..7e193b3 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,6 +1,8 @@ # The build image could be golang, but it currently does not support riscv64. Only debian:sid does, at the time of writing. FROM debian:sid-slim AS build +ARG version + # Install dependencies RUN apt-get update && apt-get install -y golang build-essential libsecret-1-dev