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