# Utilisez une image Node.js comme base
FROM node:18-slim

WORKDIR /api

COPY package*.json ./

RUN npm install

COPY . .