init repo

This commit is contained in:
liuliu
2025-12-15 12:45:54 +08:00
commit f771369e97
26 changed files with 1619 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
FROM oven/bun:1 AS base
WORKDIR /app
# Install dependencies
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile --production
# Copy source code
COPY . .
# Expose port
EXPOSE 3000
# Start the application
CMD ["bun", "start"]