From 04d5a9b9c2ffc2be7f2e83e55d1449a6b606d4fe Mon Sep 17 00:00:00 2001 From: Julien Froidefond Date: Fri, 20 Feb 2026 13:36:41 +0100 Subject: [PATCH] Update Dockerfile to streamline command execution by removing the database seeding step from the CMD instruction, simplifying the deployment process. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 075bd94..b05f530 100644 --- a/Dockerfile +++ b/Dockerfile @@ -48,4 +48,4 @@ RUN apt-get update -y && apt-get install -y gosu && rm -rf /var/lib/apt/lists/* && chmod +x /entrypoint.sh ENTRYPOINT ["/entrypoint.sh"] -CMD ["sh", "-c", "npx prisma migrate deploy && npx prisma db seed && node server.js"] +CMD ["sh", "-c", "npx prisma migrate deploy && node server.js"]