We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 299070d commit c5fa05cCopy full SHA for c5fa05c
1 file changed
Dockerfile
@@ -17,6 +17,9 @@ RUN yarn install --frozen-lockfile
17
FROM node:20-alpine AS builder
18
WORKDIR /app
19
20
+ARG NEXT_PUBLIC_API_URL
21
+ENV NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
22
+
23
# Copy dependencies from deps stage
24
COPY --from=deps /app/node_modules ./node_modules
25
COPY . .
0 commit comments