diff --git a/Dockerfile b/Dockerfile index d666d73..9b62922 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:22-alpine AS builder WORKDIR /app COPY package*.json ./ -RUN npm install --frozen-lockfile +RUN npm i ---force COPY . . RUN npm run build