feat: Add docker deployment

This commit is contained in:
Björn Benouarets
2025-11-04 22:28:33 +01:00
parent aef92df592
commit 654533bb23

View File

@@ -2,7 +2,8 @@ FROM node:22-alpine AS builder
WORKDIR /app
COPY package*.json ./
RUN npm ci
RUN npm install
COPY . .
RUN npm run build