feat(umami): setup
All checks were successful
Build and Push Docker Image / build (push) Successful in 1m28s

This commit is contained in:
2026-02-27 19:21:23 +01:00
parent e87f19e7ce
commit 6da91f86ff
5 changed files with 34 additions and 2 deletions

View File

@@ -13,6 +13,12 @@ RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --prod --frozen-l
FROM base AS build
RUN --mount=type=cache,id=pnpm,target=/pnpm/store pnpm install --frozen-lockfile
ARG NUXT_PUBLIC_UMAMI_HOST
ARG NUXT_PUBLIC_UMAMI_ID
ENV NUXT_PUBLIC_UMAMI_HOST=$NUXT_PUBLIC_UMAMI_HOST
ENV NUXT_PUBLIC_UMAMI_ID=$NUXT_PUBLIC_UMAMI_ID
RUN pnpm run build
FROM base