ci: fix version injection to be a docker build arg

This commit is contained in:
Nicolas Meienberger
2025-11-16 16:53:29 +01:00
parent 0d36484c04
commit a3e027694a
3 changed files with 6 additions and 6 deletions

View File

@@ -59,6 +59,9 @@ CMD ["bun", "run", "dev"]
# ------------------------------
FROM oven/bun:${BUN_VERSION} AS builder
ARG APP_VERSION=dev
ENV VITE_APP_VERSION=${APP_VERSION}
WORKDIR /app
COPY ./package.json ./bun.lock ./