TODO: mise a jour 2026-06-04 - cleanup massif, helms ansible generés

This commit is contained in:
Eric FELIXINE
2026-06-04 02:05:32 -04:00
parent b56749182e
commit 8c2251faba
8 changed files with 1237 additions and 115 deletions

View File

@@ -0,0 +1,6 @@
FROM node:20-alpine
WORKDIR /app
COPY server.js .
RUN npm init -y && npm install express bcryptjs jsonwebtoken cors
EXPOSE 3001
CMD ["node", "server.js"]