From 6dfd37b5d01c339a94be5b427b97d9e9f446e270 Mon Sep 17 00:00:00 2001 From: GeorgeWebberley Date: Mon, 26 Jan 2026 16:28:21 +0100 Subject: [PATCH] Fixing docker version issue --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d67a19b..cf80066 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ FROM node:20-alpine AS builder WORKDIR /app COPY --from=deps /app/node_modules ./node_modules COPY . . -ARG APP_VERSION=v0.0.0 +ARG APP_VERSION=v0.0.1 ENV NEXT_PUBLIC_APP_VERSION=$APP_VERSION ENV NEXT_TELEMETRY_DISABLED 1 RUN npm run build