mirror of https://github.com/bastienwirtz/homer
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 #881pull/887/head
parent
2a0387f90e
commit
a8f7d09bd4
|
@ -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" \
|
||||
|
|
Loading…
Reference in New Issue