First image deployment
All checks were successful
Docker Deploy / build-and-push (push) Successful in 3m46s

This commit is contained in:
2026-01-16 15:15:13 -07:00
parent 64717319cc
commit 38fe0ea9ce
8 changed files with 94 additions and 17 deletions

View File

@@ -21,9 +21,11 @@ COPY package.json pnpm-lock.yaml ./
RUN pnpm install --prod
RUN mkdir -p /app/data
ENV HOST=0.0.0.0
ENV PORT=4321
ENV DATABASE_URL=chronus.db
ENV DATABASE_URL=/app/data/chronus.db
EXPOSE 4321
CMD ["node", "./dist/server/entry.mjs"]