feat: display app version

This commit is contained in:
Henry
2026-01-12 21:34:50 +00:00
parent 47b6f06be4
commit cd3f6fc918
4 changed files with 62 additions and 0 deletions

View File

@@ -37,9 +37,11 @@ RUN turbo prune --scope=${PROJECT} --scope=@kan/db --docker
# 3. Build the project
FROM base AS builder
ARG PROJECT
ARG APP_VERSION
# Environment to skip .env validation on build
ENV CI=true
ENV NEXT_PUBLIC_APP_VERSION=${APP_VERSION}
WORKDIR /app