diff --git a/Dockerfile b/Dockerfile index b25316c..33f5f92 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,8 +1,14 @@ FROM oven/bun:1 AS builder +ARG VERSION +ARG COMMIT + WORKDIR /app COPY . . +ENV APP_VERSION=${VERSION} \ + APP_COMMIT=${COMMIT} + RUN bun install --frozen-lockfile && \ bun run build diff --git a/src/components/layout/AppFooter.vue b/src/components/layout/AppFooter.vue index 9edc681..1b7dfc1 100644 --- a/src/components/layout/AppFooter.vue +++ b/src/components/layout/AppFooter.vue @@ -1,7 +1,14 @@ @@ -12,13 +19,29 @@ const { data: versionData } = useVersion() >