File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -62,7 +62,6 @@ yarn-error.log*
6262
6363# Lock files (keep package.json though)
6464package-lock.json
65- yarn.lock
6665
6766# Prettier
6867.prettierrc *
Load Diff This file was deleted.
Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change 1+ approvedGitRepositories :
2+ - " **"
3+
14compressionLevel : mixed
25
36enableGlobalCache : false
47
8+ enableScripts : true
9+
510nodeLinker : node-modules
611
712npmMinimalAgeGate : 4320
813
9- yarnPath : .yarn/releases/yarn-4.11 .0.cjs
14+ yarnPath : .yarn/releases/yarn-4.15 .0.cjs
Original file line number Diff line number Diff line change 180180 },
181181 "author" : " " ,
182182 "license" : " ISC" ,
183- "packageManager" : " yarn@4.11 .0"
183+ "packageManager" : " yarn@4.15 .0"
184184}
Original file line number Diff line number Diff line change 11# TO BE RUN FROM DOCKER COMPOSE. DO NOT RUN MANUALLY AS CONTEXT IS NOT SET CORRECTLY
22FROM platformatic/node-caged:25-slim
3- RUN npm install -g yarn
43
54WORKDIR /base
65
7- COPY package.json tsconfig.build.json ./
6+ COPY package.json tsconfig.build.json .yarnrc.yml yarn.lock ./
7+ COPY .yarn/releases .yarn/releases
88COPY ./src/backend src/backend
99COPY ./src/shared src/shared
1010
1111RUN rm -rf src/backend/tests
1212
13- RUN yarn install --prod;
13+ RUN npm install -g corepack --force && corepack enable && yarn install
1414
1515RUN echo DATABASE_URL=\" postgresql://postgres:docker@database:5432/nerpm?schema=public\" > ./src/backend/.env
1616RUN echo NODE_ENV=development >> ./src/backend/.env
Original file line number Diff line number Diff line change 11# TO BE RUN FROM DOCKER COMPOSE. DO NOT RUN MANUALLY AS CONTEXT IS NOT SET CORRECTLY
2- FROM node:20 AS builder
2+ FROM node:22 AS builder
33
44WORKDIR /base
55
6- COPY package.json tsconfig.build.json ./
6+ COPY package.json tsconfig.build.json .yarnrc.yml yarn.lock ./
7+ COPY .yarn/releases .yarn/releases
78COPY ./src/frontend src/frontend
89COPY ./src/shared src/shared
910
1011RUN rm -rf src/frontend/src/tests
1112
12- RUN yarn install;
13+ RUN npm install -g corepack --force && corepack enable && yarn install
1314
1415RUN yarn build:shared
1516RUN yarn build:frontend:dev
Original file line number Diff line number Diff line change 22# Manual changes might be lost - proceed with caution!
33
44__metadata:
5- version: 8
5+ version: 10
66 cacheKey: 10
77
88"@adobe/css-tools@npm:^4.4.0":
You can’t perform that action at this time.
0 commit comments