diff --git a/Dockerfile b/Dockerfile index 5a68fa7c..dd1e5dea 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM node:12 WORKDIR /usr/src/app COPY package.json yarn.lock ./ -RUN yarn --frozen-lockfile +RUN yarn --ignore-engines COPY . ./ RUN yarn build EXPOSE 3000