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
.dockerignore Normal file
View File

@@ -0,0 +1,12 @@
# deps
node_modules/
Dockerfile*
docker-compose*
.dockerignore
.git
.gitignore
README.md
LICENSE
.vscode
Makefile
.env

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"]