diff --git a/Dockerfile b/Dockerfile index 066092d..b3db23e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,6 +26,9 @@ COPY --from=node_modules /app/node_modules ./node_modules # Expose the port EXPOSE 3000 +# generate prisma client +RUN npm run prisma:generate + # Start the application CMD ["npm", "run", "start:dev"] \ No newline at end of file