cybergamer0123 commited on
Commit
66de85f
·
verified ·
1 Parent(s): 963240b

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,10 +1,10 @@
1
  FROM node:23-alpine AS base
2
  WORKDIR /app
3
 
4
- RUN apk add --no-cache pnpm
5
 
6
  COPY package.json ./
7
- RUN pnpm install
8
 
9
  COPY . .
10
 
 
1
  FROM node:23-alpine AS base
2
  WORKDIR /app
3
 
4
+ RUN apk add yarn
5
 
6
  COPY package.json ./
7
+ RUN yarn install
8
 
9
  COPY . .
10