diff --git a/Dockerfile b/Dockerfile index fcae72e3..b5714037 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,10 @@ WORKDIR /app # Copy package files and install dependencies COPY package.json package-lock.json ./ +# ...existing code... RUN npm install +RUN chmod +x node_modules/.bin/vite +# ...existing code... # Copy the rest of the source code COPY . .