Fixing docker
All checks were successful
ci/woodpecker/release/woodpecker Pipeline was successful

This commit is contained in:
GeorgeWebberley 2026-01-26 18:14:41 +01:00
parent 6dfd37b5d0
commit 769419cdc0

View file

@ -7,9 +7,9 @@ RUN npm ci
FROM node:20-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . .
ARG APP_VERSION=v0.0.1
ARG APP_VERSION
ENV NEXT_PUBLIC_APP_VERSION=$APP_VERSION
COPY . .
ENV NEXT_TELEMETRY_DISABLED 1
RUN npm run build