Add dockerfiles

This commit is contained in:
Jon Staab
2026-02-27 20:16:50 -08:00
parent 3fc30c88f2
commit 871f99f2ec
2 changed files with 46 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM node:20-alpine AS build
WORKDIR /app
COPY package.json bun.lock ./
RUN npm install -g bun && bun install
COPY . .
RUN bun run build
FROM nginx:1.27-alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80