We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bbfbbba commit ce94379Copy full SHA for ce94379
Dockerfile.dev
@@ -1,6 +1,7 @@
1
# Build the UI
2
-FROM node:18-alpine3.18 as admin-builder
3
-RUN apk add --no-cache make
+FROM node:20-alpine as admin-builder
+RUN apk add --no-cache make git
4
+RUN npm install -g pnpm@9.3.0
5
WORKDIR /app
6
7
COPY web/apps/admin ./web/apps/admin
web/apps/admin/Makefile
@@ -9,4 +9,4 @@ test:
9
@pnpm run test
10
11
dep:
12
- @pnpm install --legacy-peer-deps -f
+ @pnpm install
0 commit comments