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