Initial commit

This commit is contained in:
2026-07-18 02:10:34 +00:00
commit 21ae003ded
54 changed files with 3269 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
FROM oven/bun:latest
WORKDIR /app
# Copy root manifest files and workspace packages needed for bun workspaces
COPY package.json ./
COPY apps ./apps
COPY packages ./packages
# Install workspace dependencies from repo root
RUN bun install
# Build the client
WORKDIR /app/apps/client
RUN bun run build
EXPOSE 3000
CMD ["bun", "run", "start"]