diff --git a/Dockerfile b/Dockerfile index a9d13a8..c0d7112 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,12 +8,7 @@ WORKDIR /app # Install dependencies based on the preferred package manager COPY package.json yarn.lock* package-lock.json* pnpm-lock.yaml* ./ -RUN \ - if [ -f yarn.lock ]; then yarn --frozen-lockfile; \ - elif [ -f package-lock.json ]; then npm ci; \ - elif [ -f pnpm-lock.yaml ]; then corepack enable pnpm && pnpm i --frozen-lockfile; \ - else echo "Lockfile not found." && exit 1; \ - fi +RUN npm ci --force # Rebuild the source code only when needed