From a8f7d09bd4e1618ff7bc84feb206bb41a819167e Mon Sep 17 00:00:00 2001 From: Molham Al Nasr Date: Fri, 28 Feb 2025 12:17:01 +0100 Subject: [PATCH] fix(Dockerfile): add default value for ARG VERSION_TAG to prevent build errors Added a default value `latest` to the ARG VERSION_TAG in the Dockerfile. This ensures that the build does not fail when the VERSION_TAG argument is not explicitly provided, making manual builds more reliable. Fixes #881 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d0fe3ec..1a55d92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ RUN pnpm build # production stage FROM alpine:3.21 -ARG VERSION_TAG +ARG VERSION_TAG=latest LABEL \ org.label-schema.schema-version="1.0" \