From 119407ec2e1ae0db1be7de0ccdecd68cc756ef7e Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Mon, 11 Oct 2021 12:36:44 +0200 Subject: [PATCH] also install database packages --- backend/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index 9686cf88c..431380e4e 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -68,6 +68,9 @@ COPY ./database/ ../database/ # npm install RUN yarn install --production=false --frozen-lockfile --non-interactive +# npm install database +RUN cd ../database && yarn install --production=false --frozen-lockfile --non-interactive + # npm build RUN yarn run build