docker setup

This commit is contained in:
2026-02-06 11:26:38 +00:00
parent ceffc05899
commit df4f986565
2 changed files with 24 additions and 0 deletions

12
Dockerfile Normal file
View File

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