fix(docker): API URL as build arg

This commit is contained in:
2025-09-14 18:25:50 +01:00
parent cd6d6d03d2
commit bffcbfc5fe
2 changed files with 5 additions and 2 deletions

View File

@@ -14,6 +14,9 @@ COPY . .
ENV NEXT_TELEMETRY_DISABLED=1
ARG NEXT_PUBLIC_API_URL
ENV NEXT_PUBLIC_API_URL=$NEXT_PUBLIC_API_URL
RUN npm run build
FROM base AS runner