diff --git a/Dockerfile b/Dockerfile index 5f4c43a..7e39c2c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,6 @@ RUN npm install # Copy the rest of the code COPY . . RUN npx prisma generate -RUN npx prisma db seed # Expose the dev port EXPOSE 3000 diff --git a/prisma.config.ts b/prisma.config.ts index 553fd6d..5313bd7 100644 --- a/prisma.config.ts +++ b/prisma.config.ts @@ -7,7 +7,7 @@ export default defineConfig({ schema: "prisma/schema.prisma", migrations: { path: "prisma/migrations", - seed: 'npm prisma/seed.ts', + seed: 'bun prisma/seed.ts', }, datasource: { url: process.env["DATABASE_URL"],