From 0f22768b4818fd952e25632f525229a5cf3666a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9rick=20Pruneau?= Date: Mon, 29 Dec 2025 09:36:28 -0500 Subject: [PATCH] Added ARG to dockerfile --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ce4d65d..cc720cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,8 @@ WORKDIR /app RUN yarn global add @quasar/cli # Set environment variables -ENV VITE_TARGO_BACKEND_URL="http://targo-backend:3000" +ARG VITE_TARGO_BACKEND_URL +ENV VITE_TARGO_BACKEND_URL $VITE_TARGO_BACKEND_URL # Copy the code COPY . .