glowing-fiesta/devops/Dockerfile
Liviu Burcusel 7939e11f22
All checks were successful
Sonar / SonarQube (push) Successful in 51s
Sonar / Docker stuff (push) Successful in 7s
Changed launch command for image
2025-12-10 16:15:14 +01:00

12 lines
162 B
Docker

FROM node:lts-alpine
WORKDIR /app
COPY output ./
ENV PORT=3000
ENV HOST=0.0.0.0
EXPOSE 3000
CMD ["NITRO_CLUSTER_WORKERS=4", "node", "/app/server/index.mjs"]