feat: add default migration

staging
shancheas 2024-07-26 14:16:56 +07:00
parent 46b92afb89
commit b2ce4d6732
1 changed files with 1 additions and 0 deletions

View File

@ -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