Force install all dependencies in the backend

This commit is contained in:
Matt Rider 2019-06-22 12:31:44 -03:00
parent f551e9a637
commit f029439024

View File

@ -15,7 +15,7 @@ COPY .env.template .env
CMD ["yarn", "run", "start"]
FROM base as builder
RUN yarn install --frozen-lockfile --non-interactive
RUN yarn install --frozen-lockfile --non-interactive --force
COPY . .
RUN cp .env.template .env
RUN yarn run build