Skip to content

Commit ab4530d

Browse files
Merge branch 'develop' into main
2 parents a75cdf2 + db60f04 commit ab4530d

File tree

28 files changed

+1590
-235
lines changed

28 files changed

+1590
-235
lines changed

Dockerfile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,12 @@ WORKDIR /evolution
1212
COPY ./package*.json ./
1313
COPY ./tsconfig.json ./
1414
COPY ./tsup.config.ts ./
15+
COPY ./patches ./patches
1516

1617
RUN npm ci --silent
1718

19+
RUN npx patch-package
20+
1821
COPY ./src ./src
1922
COPY ./public ./public
2023
COPY ./prisma ./prisma
@@ -28,7 +31,7 @@ RUN chmod +x ./Docker/scripts/* && dos2unix ./Docker/scripts/*
2831

2932
RUN ./Docker/scripts/generate_database.sh
3033

31-
RUN npm run build
34+
RUN NODE_OPTIONS="--max-old-space-size=2048" npm run build
3235

3336
FROM node:24-alpine AS final
3437

0 commit comments

Comments
 (0)