From 534b59bd85f21fe1c6c5b50708bfc393317c6189 Mon Sep 17 00:00:00 2001 From: Joel Carter Date: Mon, 1 Jul 2024 16:09:06 -0500 Subject: [PATCH] Change entrypoint to use Node.js over Yarn --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index b302a78..a857bae 100644 --- a/Dockerfile +++ b/Dockerfile @@ -26,7 +26,7 @@ RUN yarn workspaces focus --production FROM node:${NODE_VERSION} EXPOSE 80 WORKDIR /app -CMD ["yarn", "launch"] +CMD ["node", "--max-old-space-size=8192", " --experimental-specifier-resolution=node", "./dist/node/index.js"] # Install required packages # RUN apk add --no-cache file imagemagick ffmpeg