From b2ce4d6732f0e40f1ac4eadaa8952fb90471a7f2 Mon Sep 17 00:00:00 2001 From: shancheas Date: Fri, 26 Jul 2024 14:16:56 +0700 Subject: [PATCH] feat: add default migration --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 8b28cc0..1aa89d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,6 +2,7 @@ FROM node:18.17-alpine as builder RUN apk add --no-cache git WORKDIR /app COPY . . +RUN yarn migration:execute RUN yarn install RUN yarn build FROM node:18.17-alpine