diff --git a/Dockerfile b/Dockerfile index 00a2e4f..3289f8f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,10 +3,8 @@ FROM node:lts-alpine AS build WORKDIR /app -COPY package.json yarn.lock ./ -RUN yarn - COPY . . +RUN yarn install RUN yarn build # Final stage