From f1dd5e5dc8d996803b2329282b81b2491d77e629 Mon Sep 17 00:00:00 2001 From: Lauren Liberda Date: Sat, 24 Jul 2021 21:45:09 +0200 Subject: [PATCH] fix docker containers to work with database --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 560595d..5972f2f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,7 @@ COPY package.json . COPY yarn.lock . RUN yarn install --production --frozen-lockfile +COPY ormconfig.js . COPY --from=build /app/dist dist CMD ["yarn", "start:prod"]