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