From c8ef44016e29f078316277ca04a04af7c18f3d0e Mon Sep 17 00:00:00 2001 From: Vermium Sifell Date: Sun, 23 Oct 2022 18:04:21 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Dockerfile=20nearly=20finished?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 508c385..35dcc7e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ COPY prisma ./prisma/ # Install app dependencies RUN npm install +RUN npx prisma migrate deploy + COPY . . RUN npm run build