diff --git a/Dockerfile b/Dockerfile index eedece9..b5122cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:latest AS build WORKDIR /app COPY package.json ./ -RUN npm install +RUN yarn install COPY docker ./ RUN npm run build