From 769419cdc0e95390f782088ef48f2760f0fd4f01 Mon Sep 17 00:00:00 2001 From: GeorgeWebberley Date: Mon, 26 Jan 2026 18:14:41 +0100 Subject: [PATCH] Fixing docker --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cf80066..cc79025 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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