From 18aa4c08f493f594c515eaee2c0e05107e5194e1 Mon Sep 17 00:00:00 2001 From: Nicolas Drolet Date: Wed, 29 Oct 2025 16:34:17 -0400 Subject: [PATCH] fix(docker): bit of a callback to App Targo 1.0 -- 'clean Dockerfile' --- Dockerfile | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 63f43f8..9c8c234 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,15 +7,12 @@ WORKDIR /app # Set environment variables ENV VITE_TARGO_BACKEND_URL="http://targo-backend:3000" -# Copy package.json & package-lock.json first (for caching) -COPY package*.json ./ +# Copy the code +COPY . . # Install dependencies RUN npm install -# Copy the rest of the code -COPY . . - # Expose Quasar dev port EXPOSE 9000