Build docker image
Some checks failed
Sonar / SonarQube (push) Successful in 51s
Sonar / Docker stuff (push) Failing after 4s

This commit is contained in:
Liviu Burcusel 2025-12-08 16:31:02 +01:00
parent 22a102fcbd
commit 518c70c7c1
Signed by: liviu
GPG key ID: 6CDB37A4AD2C610C
2 changed files with 14 additions and 16 deletions

12
devops/Dockerfile Normal file
View file

@ -0,0 +1,12 @@
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"]