From 0e91b24ed2089f75f3f1b0798b4170d69dc11083 Mon Sep 17 00:00:00 2001 From: "ahmed.mujtaba" Date: Tue, 18 Aug 2026 12:20:47 +0500 Subject: [PATCH] ip changed in dockerfile --- frontend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/Dockerfile b/frontend/Dockerfile index caa77df..f2a2e3a 100644 --- a/frontend/Dockerfile +++ b/frontend/Dockerfile @@ -18,7 +18,7 @@ COPY . . # built, not when the container starts — rebuild the image to point it elsewhere. # `.env.production.local` outranks every other env file, so this wins over the empty # VITE_API_BASE in .env.production (which means "same origin, behind a proxy"). -ARG VITE_API_BASE=http://localhost:8000 +ARG VITE_API_BASE=http://172.16.204.191:8000 RUN printf 'VITE_API_BASE=%s\n' "$VITE_API_BASE" > .env.production.local \ && npm run build