Add package file back to migration image

This is needed when running via docker-compose
This commit is contained in:
Jackson Harper 2022-03-03 11:05:36 -08:00
parent ff871c35bc
commit 78cb194912

View file

@ -2,6 +2,8 @@ FROM node:14.18-alpine
WORKDIR /app
COPY package.json .
COPY yarn.lock .
COPY tsconfig.json .
COPY /packages/db/package.json ./packages/db/package.json