From cd8ce1f34f47ad0d3e3db035157d379b7f1b179a Mon Sep 17 00:00:00 2001 From: ahasani194 Date: Mon, 9 Jun 2025 13:50:22 +0330 Subject: [PATCH] feat: add environment variables for production URL and API base URL in Dockerfile --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 9659d11..8463ecd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,6 +11,8 @@ FROM node:20-alpine AS runner WORKDIR /app ENV NODE_ENV=production ENV PORT=5000 +ENV VERCEL_PROJECT_PRODUCTION_URL=http://194.59.214.243:5000 +ENV NEXT_PUBLIC_API_BASE_URL=http://194.59.214.243:5000/api COPY --from=builder /app/.next ./.next COPY --from=builder /app/public ./public COPY --from=builder /app/package.json ./package.json