From d348706f1611aab11c17c1aa9ab4e22f846cd054 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Sat, 9 Oct 2021 13:33:13 +0200 Subject: [PATCH] include the entity models in the docker build --- backend/Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend/Dockerfile b/backend/Dockerfile index fc853eb63..02f772db6 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -62,6 +62,8 @@ FROM base as build # Copy everything COPY . . +# Also copy external enities from database +COPY ../database/entity/ ../database/entity/ # npm install RUN yarn install --production=false --frozen-lockfile --non-interactive # npm build