summaryrefslogtreecommitdiff
path: root/Dockerfile
diff options
context:
space:
mode:
authorRaphael Kabo <raphael@spruce.eco>2024-07-31 22:23:22 +0100
committerRaphael Kabo <raphael@spruce.eco>2024-07-31 22:23:22 +0100
commit9cfb568b56ce17f166ae87d1612e80b0d48b3fec (patch)
tree6646b107be69f4f563eafc25b670bc49e829f2bb /Dockerfile
parent55e0d6ff22b6d3b037de6b9b0cb0c8ce6c2a19a9 (diff)
fix: Docker unhappy with CMD
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 1668095..5da290e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -8,4 +8,4 @@ COPY . /app/
# Always exit 0 here because TSC will fail while we're migrating to TypeScript but
# not everything uses TypeScript
RUN pnpm run build; exit 0
-CMD pnpm run start
+CMD ["node", "dist/start.js"]