From 8578ca9e51f342a2136ec0bd7efc183dfac28857 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Wed, 20 Oct 2021 00:26:00 +0200 Subject: [PATCH] also build database in dev mode --- backend/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index dd151ae88..8331f5983 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -55,7 +55,7 @@ FROM base as development # Run command # (for development we need to execute yarn install since the # node_modules are on another volume and need updating) -CMD /bin/sh -c "cd /database && yarn install && cd /app && yarn install && yarn run dev" +CMD /bin/sh -c "cd /database && yarn install && yarn build && cd /app && yarn install && yarn run dev" ################################################################################## # BUILD (Does contain all files and is therefore bloated) ########################