From cf75679d7f21b1f8d627dab431da3007fb469c3d Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Thu, 1 May 2025 01:58:22 +0200 Subject: [PATCH] fix: :bug: Remove usage of old cli start command --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 95836b08..7d4c28bf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -51,4 +51,4 @@ WORKDIR /app ENV NODE_ENV=production ENTRYPOINT [ "/bin/sh", "/app/entrypoint.sh" ] # Run migrations and start the server -CMD [ "cli", "start" ] +CMD [ "bun", "run", "index.js" ]