Ajoutez des fichiers projet.

This commit is contained in:
2026-04-30 12:51:31 +02:00
parent d17cbe4df0
commit 72f4beeb61
57 changed files with 26895 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package*.json ./
# Install dependencies (including pdfkit)
RUN npm ci --only=production
# Copy application code
COPY . .
# Expose port
EXPOSE 3024
# Start the server
CMD ["node", "server.js"]