feat(umami): setup
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled

This commit is contained in:
2026-02-27 19:19:45 +01:00
parent e87f19e7ce
commit 0fd71e40dd
5 changed files with 36 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 UMAMI_HOST
ARG UMAMI_ID
ENV UMAMI_HOST=$UMAMI_HOST
ENV UMAMI_ID=$UMAMI_ID
RUN pnpm run build
FROM base