Add Node.js manager service and updated docker-compose

This commit is contained in:
2026-05-10 20:43:48 -03:00
parent de6543acf5
commit 119bb443d9
11 changed files with 237 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
ENV PORT=3000
CMD ["npm", "start"]