Skip to content

Commit 42af491

Browse files
committed
Update yarn to version 4
1 parent 147dee8 commit 42af491

File tree

7 files changed

+6008
-4009
lines changed

7 files changed

+6008
-4009
lines changed

.github/workflows/main.yml

+4
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
steps:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
21+
env:
22+
yarn: 4.5.1
2123
with:
2224
node-version: 22
2325
cache: 'yarn'
@@ -43,6 +45,8 @@ jobs:
4345
steps:
4446
- uses: actions/checkout@v4
4547
- uses: actions/setup-node@v4
48+
env:
49+
yarn: 4.5.1
4650
with:
4751
node-version: 22
4852
cache: 'yarn'

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
.yarn/
12
node_modules/
23
dist/
34
coverage/

.yarnrc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
nodeLinker: node-modules

Dockerfile

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
FROM node:22-alpine AS build
22

3+
RUN corepack enable
4+
RUN yarn set version berry
5+
36
RUN apk add dumb-init
47

58
WORKDIR /home/node
69

710
COPY . .
811

9-
RUN yarn install --frozen-lockfile
12+
RUN yarn install --immutable
1013
RUN yarn build
1114

1215
FROM node:22-alpine
@@ -17,6 +20,8 @@ COPY --from=build /usr/bin/dumb-init /usr/bin/dumb-init
1720

1821
RUN apk update && \
1922
apk upgrade --no-cache && \
23+
corepack enable && \
24+
yarn set version berry && \
2025
addgroup --gid 3000 --system juffgroup && \
2126
adduser --uid 2000 --system --ingroup juffgroup juffuser && \
2227
mkdir /home/juffuser/express-graphql-example/

docker-compose.yml

+3-10
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ services:
33
image: mysql
44
restart: unless-stopped
55
env_file:
6-
- ./.env
76
- ./.env.local
7+
- ./.env
88
environment:
99
- MYSQL_DATABASE=${DATABASE_NAME}
1010
- MYSQL_USER=${DATABASE_USER}
@@ -18,27 +18,20 @@ services:
1818
application:
1919
image: node:22-alpine
2020
working_dir: /home/node
21-
command: sh -c "yarn install --frozen-lockfile && yarn start"
21+
command: sh -c "corepack enable && yarn set version berry && yarn install && yarn start"
2222
depends_on:
2323
- mysqldb
2424
restart: unless-stopped
2525
env_file:
26-
- ./.env
2726
- ./.env.local
27+
- ./.env
2828
ports:
2929
- ${PORT}:${PORT}
30-
environment:
31-
- DATABASE_HOST=mysqldb
32-
- DATABASE_USER=$DATABASE_USER
33-
- DATABASE_PASSWORD=$DATABASE_PASSWORD
34-
- DATABASE_NAME=$DATABASE_NAME
35-
- DATABASE_PORT=$DATABASE_PORT
3630
links:
3731
- mysqldb
3832
volumes:
3933
- ".:/home/node"
4034

41-
4235
volumes:
4336
mysql_data:
4437
driver: local

package.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,6 @@
3535
"supertest": "^4.0.2",
3636
"ts-jest": "^29.1.0",
3737
"typescript": "^5.0.3"
38-
}
38+
},
39+
"packageManager": "[email protected]"
3940
}

0 commit comments

Comments
 (0)