From f029439024e1dbb8a60d4ae835036ead9f04ec14 Mon Sep 17 00:00:00 2001 From: Matt Rider Date: Sat, 22 Jun 2019 12:31:44 -0300 Subject: [PATCH] Force install all dependencies in the backend --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index f0251bddc..a6bcd48c2 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -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