ops: add Docker deployment configuration

This commit is contained in:
2026-05-13 08:52:25 +02:00
parent 53944c44d3
commit aadb241986
2 changed files with 12 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM bun:latest
WORKDIR /app
COPY package.json bun.lock ./
RUN bun install --production
COPY . .
EXPOSE 3099
CMD ["bun", "run", "start"]
View File