Files
WebNationsGlory_ServeurBuil…/Dockerfile
2026-02-04 23:56:47 +01:00

15 lines
215 B
Docker

FROM node:18-alpine
WORKDIR /app
COPY backend/package*.json ./
RUN npm install --production && npm cache clean --force
COPY backend/src ./src
COPY frontend ./frontend
EXPOSE 4001
CMD ["node", "src/server.js"]