save package version in config file

This commit is contained in:
pablof7z 2023-07-06 22:58:38 +02:00
commit 88811fbcd2
5 changed files with 9 additions and 2 deletions

View file

@ -10,9 +10,11 @@ COPY tsconfig.json .
RUN apt-get update -y && apt-get install -y openssl
RUN npx prisma generate
RUN npm run build
RUN npx prisma generate
RUN npm i
RUN npx prisma migrate deploy
ENTRYPOINT [ "node", "dist/index.js" ]