Feat: Add Dockerfile for Dokploy

This commit is contained in:
2026-02-18 13:17:02 -08:00
parent 64f073ab80
commit 69f0f5b9f4

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM oven/bun:1-slim
WORKDIR /app
COPY package.json bun.lock* ./
RUN bun install --frozen-lockfile --production
COPY . .
EXPOSE 3000
CMD ["bun", "run", "index.js"]