Changed to localhost for env vars for model and backend in frontend dockerfile.

This commit is contained in:
K
2025-07-23 01:58:59 +05:30
parent fb8ac9eb82
commit 220f822f3d
+2 -2
View File
@@ -2,8 +2,8 @@
FROM node:22 FROM node:22
# Environment variables # Environment variables
ENV MODEL_URI=http://model:8081 ENV MODEL_URI=http://localhost:8081
ENV BACKEND_URI=http://backend:8000 ENV BACKEND_URI=http://localhost:8000
# Metadata # Metadata
LABEL maintainer="kshitijka" LABEL maintainer="kshitijka"