File tree Expand file tree Collapse file tree 6 files changed +2666
-2127
lines changed
Expand file tree Collapse file tree 6 files changed +2666
-2127
lines changed Original file line number Diff line number Diff line change 1- FROM node:22 -alpine AS builder
1+ FROM node:24 -alpine AS builder
22
33WORKDIR /app
44
55COPY package.json yarn.lock ./
6- RUN yarn install --frozen-lockfile
6+ RUN yarn install
77
88COPY tsconfig.json ./
99COPY src ./src
1010
1111RUN yarn build
1212
13- FROM node:22 -alpine
13+ FROM node:24 -alpine
1414
1515WORKDIR /app
1616
1717RUN addgroup -g 1001 -S nodejs && \
1818 adduser -S nodejs -u 1001
1919
2020COPY package.json yarn.lock ./
21- RUN yarn install --frozen-lockfile -- production && yarn cache clean
21+ RUN yarn install --production && yarn cache clean
2222
2323COPY --from=builder /app/dist ./dist
2424
Original file line number Diff line number Diff line change 1212 },
1313 "dependencies" : {
1414 "@hono/node-server" : " ^1.19.9" ,
15- "hono" : " ^4.11.7 " ,
15+ "hono" : " ^4.11.9 " ,
1616 "jsonwebtoken" : " ^9.0.3" ,
17- "lru-cache" : " ^11.2.5 " ,
17+ "lru-cache" : " ^11.2.6 " ,
1818 "nanoid" : " ^5.1.6" ,
19- "pino" : " ^10.3.0 " ,
19+ "pino" : " ^10.3.1 " ,
2020 "ws" : " ^8.19.0" ,
2121 "zod" : " ^4.3.6"
2222 },
2323 "devDependencies" : {
24- "@biomejs/biome" : " 2.3.13 " ,
24+ "@biomejs/biome" : " 2.3.14 " ,
2525 "@types/jsonwebtoken" : " ^9.0.10" ,
2626 "@types/node" : " ^22.10.2" ,
2727 "@types/ws" : " ^8.18.1" ,
You can’t perform that action at this time.
0 commit comments