initial add of basic nodejs app, Dockerfile and CloudronManifest.json

This commit is contained in:
John Caruso
2026-01-24 14:03:10 -05:00
commit b2a1f90af2
8 changed files with 906 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:25-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production && npm cache clean --force
COPY . .
CMD ["node", "index.js"]