add docker deployment stack and vps setup docs

This commit is contained in:
Kellan Drucquer 2026-04-03 22:10:35 -04:00
parent d301c7b4f3
commit 1fccb16dba
8 changed files with 544 additions and 0 deletions

View file

@ -0,0 +1,11 @@
FROM oven/bun:1.3.11
WORKDIR /app
ENV NODE_ENV=production
COPY . .
RUN bun install --frozen-lockfile
ENTRYPOINT ["bun"]