diff --git a/Dockerfile b/Dockerfile index eb970a6..795b6cd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,9 @@ RUN apk add --no-cache git WORKDIR /app -# Install dependencies strictly from lockfile -COPY package.json package-lock.json* ./ -RUN npm ci +# Install dependencies (no lockfile needed) +COPY package.json ./ +RUN npm install # Copy source files COPY . .