Skip to content

Commit 255d811

Browse files
authored
Merge pull request #1593 from rocket-admin/backend_up_npm_libs
Backend up npm libs
2 parents 4f579c9 + 7eaae9e commit 255d811

File tree

6 files changed

+2666
-2127
lines changed

6 files changed

+2666
-2127
lines changed

autoadmin-ws-server/Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,24 @@
1-
FROM node:22-alpine AS builder
1+
FROM node:24-alpine AS builder
22

33
WORKDIR /app
44

55
COPY package.json yarn.lock ./
6-
RUN yarn install --frozen-lockfile
6+
RUN yarn install
77

88
COPY tsconfig.json ./
99
COPY src ./src
1010

1111
RUN yarn build
1212

13-
FROM node:22-alpine
13+
FROM node:24-alpine
1414

1515
WORKDIR /app
1616

1717
RUN addgroup -g 1001 -S nodejs && \
1818
adduser -S nodejs -u 1001
1919

2020
COPY package.json yarn.lock ./
21-
RUN yarn install --frozen-lockfile --production && yarn cache clean
21+
RUN yarn install --production && yarn cache clean
2222

2323
COPY --from=builder /app/dist ./dist
2424

autoadmin-ws-server/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@
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",

0 commit comments

Comments
 (0)