init: initial commit

This commit is contained in:
syntaxbullet
2025-12-02 20:53:49 +01:00
commit 25c7ba46f0
17 changed files with 578 additions and 0 deletions

15
app/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM oven/bun:latest AS base
WORKDIR /app
# Install dependencies
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile
# Copy source code
COPY . .
# Expose port
EXPOSE 3000
# Default command
CMD ["bun", "run", "dev"]