glowing-fiesta/devops/Dockerfile
Liviu Burcusel 518c70c7c1
Some checks failed
Sonar / SonarQube (push) Successful in 51s
Sonar / Docker stuff (push) Failing after 4s
Build docker image
2025-12-08 16:31:02 +01:00

12 lines
135 B
Docker

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