diff --git a/Dockerfile b/Dockerfile index d43d1a3..4eac48a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:14-alpine as builder WORKDIR /src COPY . /src/ -RUN npm ci && npm run build +RUN yarn install --frozen-lockfile && yarn build # App FROM nginxinc/nginx-unprivileged