Added ARG to dockerfile

This commit is contained in:
Frédérick Pruneau 2025-12-29 09:36:28 -05:00
parent 2f03fb4f3c
commit 0f22768b48

View File

@ -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 . .