diff --git a/devops/Dockerfile b/devops/Dockerfile index 188dcca..d21e7cc 100644 --- a/devops/Dockerfile +++ b/devops/Dockerfile @@ -1,5 +1,7 @@ FROM node:lts-alpine +ENV NITRO_CLUSTER_WORKERS=4 + WORKDIR /app COPY output ./ @@ -9,4 +11,4 @@ ENV HOST=0.0.0.0 EXPOSE 3000 -CMD ["NITRO_CLUSTER_WORKERS=4", "node", "/app/server/index.mjs"] +CMD ["node", "/app/server/index.mjs"]