V1_Fonctionnel_GTAV1_GTA

This commit is contained in:
2025-11-28 16:55:45 +01:00
parent f22979a44a
commit 6d244f5323
55 changed files with 7567 additions and 5819 deletions

View File

@@ -0,0 +1,24 @@
FROM node:18-alpine
# Install required tools
RUN apk add --no-cache curl mysql-client python3 make g++
WORKDIR /app
# Copy package files first for better caching
COPY package*.json ./
# Install dependencies
RUN npm install --production
# Copy application code
COPY . .
# Create uploads directory
RUN mkdir -p /app/uploads/medical
# Expose the port
EXPOSE 3000
# Start the server
CMD ["node", "server.js"]