first commit
All checks were successful
Build and deploy / deploy (push) Successful in 46s

This commit is contained in:
2025-09-07 02:30:04 +01:00
commit dbbd570d92
7 changed files with 169 additions and 0 deletions

13
Dockerfile Normal file
View File

@@ -0,0 +1,13 @@
FROM oven/bun:1-debian AS base
RUN apt-get update && apt-get install -y xz-utils
WORKDIR /usr/src/app
ENV NODE_ENV=production
VOLUME [ "/appdata", "/backup" ]
COPY . .
RUN bun install --frozen-lockfile --production
ENTRYPOINT [ "bun", "run", "index.ts" ]