Remove --force as it didn't make a difference

This commit is contained in:
Matt Rider 2019-06-22 13:57:20 -03:00
parent f029439024
commit 6bd153b7cc

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 --force
RUN yarn install --frozen-lockfile --non-interactive
COPY . .
RUN cp .env.template .env
RUN yarn run build