Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down