File tree 7 files changed +6008
-4009
lines changed
7 files changed +6008
-4009
lines changed Original file line number Diff line number Diff line change 18
18
steps :
19
19
- uses : actions/checkout@v4
20
20
- uses : actions/setup-node@v4
21
+ env :
22
+ yarn : 4.5.1
21
23
with :
22
24
node-version : 22
23
25
cache : ' yarn'
43
45
steps :
44
46
- uses : actions/checkout@v4
45
47
- uses : actions/setup-node@v4
48
+ env :
49
+ yarn : 4.5.1
46
50
with :
47
51
node-version : 22
48
52
cache : ' yarn'
Original file line number Diff line number Diff line change
1
+ .yarn /
1
2
node_modules /
2
3
dist /
3
4
coverage /
Original file line number Diff line number Diff line change
1
+ nodeLinker : node-modules
Original file line number Diff line number Diff line change 1
1
FROM node:22-alpine AS build
2
2
3
+ RUN corepack enable
4
+ RUN yarn set version berry
5
+
3
6
RUN apk add dumb-init
4
7
5
8
WORKDIR /home/node
6
9
7
10
COPY . .
8
11
9
- RUN yarn install --frozen-lockfile
12
+ RUN yarn install --immutable
10
13
RUN yarn build
11
14
12
15
FROM node:22-alpine
@@ -17,6 +20,8 @@ COPY --from=build /usr/bin/dumb-init /usr/bin/dumb-init
17
20
18
21
RUN apk update && \
19
22
apk upgrade --no-cache && \
23
+ corepack enable && \
24
+ yarn set version berry && \
20
25
addgroup --gid 3000 --system juffgroup && \
21
26
adduser --uid 2000 --system --ingroup juffgroup juffuser && \
22
27
mkdir /home/juffuser/express-graphql-example/
Original file line number Diff line number Diff line change @@ -3,8 +3,8 @@ services:
3
3
image : mysql
4
4
restart : unless-stopped
5
5
env_file :
6
- - ./.env
7
6
- ./.env.local
7
+ - ./.env
8
8
environment :
9
9
- MYSQL_DATABASE=${DATABASE_NAME}
10
10
- MYSQL_USER=${DATABASE_USER}
@@ -18,27 +18,20 @@ services:
18
18
application :
19
19
image : node:22-alpine
20
20
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"
22
22
depends_on :
23
23
- mysqldb
24
24
restart : unless-stopped
25
25
env_file :
26
- - ./.env
27
26
- ./.env.local
27
+ - ./.env
28
28
ports :
29
29
- ${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
36
30
links :
37
31
- mysqldb
38
32
volumes :
39
33
- " .:/home/node"
40
34
41
-
42
35
volumes :
43
36
mysql_data :
44
37
driver : local
Original file line number Diff line number Diff line change 35
35
"supertest" : " ^4.0.2" ,
36
36
"ts-jest" : " ^29.1.0" ,
37
37
"typescript" : " ^5.0.3"
38
- }
38
+ },
39
+ "packageManager" :
" [email protected] "
39
40
}
You can’t perform that action at this time.
0 commit comments