diff --git a/Dockerfile b/Dockerfile index 16302d1a4..cf497edaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM node:18-alpine as builder WORKDIR /app COPY package.json . -COPY package-lock.json . -RUN npm install +COPY yarn.json . +RUN yarn install COPY . .