NITRO_CLUSTER_WORKERS as env variable
All checks were successful
Sonar / SonarQube (push) Successful in 50s
Sonar / Docker stuff (push) Successful in 7s

This commit is contained in:
Liviu Burcusel 2025-12-10 16:22:27 +01:00
parent 7939e11f22
commit 0faaef912c
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C

View file

@ -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"]