Initial commit — Gestion de Stock DC

This commit is contained in:
Etienne
2026-05-28 09:35:43 +00:00
commit ffa17142fd
8 changed files with 2281 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY . .
EXPOSE 3000
CMD ["node", "server.js"]