Add Dockerfile and nginx config for self-hosted deployment

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Brendon Heinst 2026-02-24 14:04:49 +01:00
parent 35ab6041df
commit 867309cab8
2 changed files with 21 additions and 0 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM node:20-alpine AS builder
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm ci
COPY . .
RUN npm run build
FROM nginx:alpine
COPY nginx.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /app/dist /usr/share/nginx/html

11
nginx.conf Normal file
View file

@ -0,0 +1,11 @@
server {
listen 80;
root /usr/share/nginx/html;
index index.html;
include /etc/nginx/mime.types;
location / {
try_files $uri $uri/ /index.html;
}
}