From 42b3953e5dfe46b65fcc829e4f6655d18d7d1376 Mon Sep 17 00:00:00 2001 From: Lawrence Davis Date: Sun, 21 Sep 2025 13:01:12 -0500 Subject: [PATCH] Replace ENTRYPOINT with CMD to allow release commands --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 70c1e12..a2ac91d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,4 +19,5 @@ RUN npx tsc -p apps/spin-cycle/tsconfig.migrations.json RUN cp -R dist/apps/spin-cycle-client dist/apps/spin-cycle/assets/ -ENTRYPOINT ["node", "dist/apps/spin-cycle/main.js"] +# Use CMD instead of ENTRYPOINT so Fly release_command can override it +CMD ["node", "dist/apps/spin-cycle/main.js"]