From 220f822f3d10d95e009b7d282398c7c98f359d95 Mon Sep 17 00:00:00 2001 From: Kshitij Date: Wed, 23 Jul 2025 01:58:59 +0530 Subject: [PATCH] Changed to localhost for env vars for model and backend in frontend dockerfile. --- Frontend/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Frontend/Dockerfile b/Frontend/Dockerfile index 5e40e45..24a53af 100644 --- a/Frontend/Dockerfile +++ b/Frontend/Dockerfile @@ -2,8 +2,8 @@ FROM node:22 # Environment variables -ENV MODEL_URI=http://model:8081 -ENV BACKEND_URI=http://backend:8000 +ENV MODEL_URI=http://localhost:8081 +ENV BACKEND_URI=http://localhost:8000 # Metadata LABEL maintainer="kshitijka"