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
pull/887/head
Molham Al Nasr 2025-02-28 12:17:01 +01:00 committed by Bastien Wirtz
parent 2a0387f90e
commit a8f7d09bd4
1 changed files with 1 additions and 1 deletions

View File

@ -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" \