Skip to content

Commit ce94379

Browse files
fix: fix Docker dev build for admin app (#1360)
1 parent bbfbbba commit ce94379

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

Dockerfile.dev

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Build the UI
2-
FROM node:18-alpine3.18 as admin-builder
3-
RUN apk add --no-cache make
2+
FROM node:20-alpine as admin-builder
3+
RUN apk add --no-cache make git
4+
RUN npm install -g pnpm@9.3.0
45
WORKDIR /app
56

67
COPY web/apps/admin ./web/apps/admin

web/apps/admin/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ test:
99
@pnpm run test
1010

1111
dep:
12-
@pnpm install --legacy-peer-deps -f
12+
@pnpm install

0 commit comments

Comments
 (0)