diff --git a/Dockerfile b/Dockerfile index ea5d668b..8f80013d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,8 +3,8 @@ FROM node:24.7.0-alpine3.22 AS build WORKDIR /usr/src/app COPY package.json package-lock.json ./ -RUN apk add --upgrade python3 build-base py3-setuptools py3-pip && \ - pip3 install setuptools \ +RUN apk add --upgrade python3 build-base py3-setuptools py3-pip \ + && pip3 install --break-system-packages setuptools \ && npm install COPY . . RUN npm run build --configuration=production