Skip to content

Commit 734a5d9

Browse files
committed
Merge branch 'main' of https://github.com/devforth/adminforth into next
2 parents 5e10dfa + 1daa630 commit 734a5d9

File tree

5 files changed

+5262
-7
lines changed

5 files changed

+5262
-7
lines changed

live-demo/app/Dockerfile

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
11
FROM node:20-alpine
22
WORKDIR /code/
3-
ADD package.json package-lock.json /code/
4-
RUN npm ci
3+
ADD package.json pnpm-lock.yaml pnpm-workspace.yaml /code/
4+
RUN npm i -g corepack@0.31.0
5+
RUN corepack enable
6+
RUN pnpm i
57
ADD . /code/
6-
RUN npm run bundleNow
8+
RUN pnpm bundleNow
79

810

9-
CMD ["npm", "run", "startLive"]
11+
CMD ["pnpm", "run", "startLive"]

live-demo/app/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@
3131
"@adminforth/storage-adapter-amazon-s3": "^1.0.11",
3232
"@adminforth/text-complete": "^1.8.9",
3333
"@adminforth/two-factors-auth": "^2.9.20",
34-
"@adminforth/upload": "^2.8.6",
34+
"@adminforth/upload": "^2.14.4",
3535
"@prisma/client": "^6.6.0",
36-
"adminforth": "^2.17.0-next.79",
36+
"adminforth": "2.25.0-test.8",
3737
"better-sqlite3": "^10.0.0",
3838
"express": "^4.19.2"
3939
},

0 commit comments

Comments
 (0)