Add dockerfile

This commit is contained in:
2025-08-05 13:38:02 +08:00
parent 88371d6509
commit 3f78eb1a32
5 changed files with 38 additions and 34 deletions

14
api/Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
FROM oven/bun:1.2.19-alpine
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --frozen-lockfile
COPY . .
EXPOSE 3000
CMD ["bun", "src/index.ts"]