diff --git a/Dockerfile b/Dockerfile index 902c0af..94bfb80 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:lts AS build WORKDIR /app COPY package.json yarn.lock ./ -RUN yarn install +RUN yarn install --prod COPY . ./ RUN yarn build