diff --git a/ui/Dockerfile b/ui/Dockerfile index 50921cd..b8ac292 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -38,7 +38,7 @@ COPY --from=builder /app/node_modules/@prisma ./node_modules/@prisma # Create startup script that runs migrations before starting the app RUN echo '#!/bin/sh' > /app/start.sh && \ - echo 'yarn prisma:migrate deploy' >> /app/start.sh && \ + echo 'yarn prisma:migrate:deploy' >> /app/start.sh && \ echo 'exec node /app/server/index.mjs' >> /app/start.sh && \ chmod +x /app/start.sh