dockerize site

This commit is contained in:
William Diakite 2025-06-26 16:59:15 -04:00
parent 4b666a9215
commit 58ebf72d9a
6 changed files with 46 additions and 3 deletions

19
Dockerfile Normal file
View file

@ -0,0 +1,19 @@
# Use a Node.js Alpine image for the builder stage
FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
COPY . .
RUN npm run build
RUN npm prune --production
# Use another Node.js Alpine image for the final stage
FROM node:22-alpine
WORKDIR /app
COPY --from=builder /app/build build/
COPY --from=builder /app/node_modules node_modules/
COPY package.json .
EXPOSE 3000
ENV NODE_ENV=production
CMD [ "node", "build" ]