Fix Dockerfile

This commit is contained in:
Jesse Wierzbinski 2023-11-27 15:47:39 -10:00
parent c8cafc9e8b
commit e3d999d7bd
No known key found for this signature in database

View file

@ -39,9 +39,6 @@ WORKDIR /app
RUN bunx prisma generate
# CD to app
WORKDIR /app
ENTRYPOINT [
ENV NODE_ENV=production
# Run migrations and start the server
"bun", "migrate",
"&&", "bunx", "prisma", "generate",
"&&", "bun", "run", "index.ts"
]
ENTRYPOINT [ "bun", "migrate", "&&", "bun", "run", "index.ts" ]