modifying scheduler

This commit is contained in:
ION606
2025-09-15 10:45:38 -04:00
parent 9153c3b1c6
commit a7f6c9edb5
9 changed files with 1264 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM oven/bun:1 AS base
WORKDIR /app
# prod deps
COPY package.json ./package.json
RUN bun install --ci --production
COPY server.mjs ./server.mjs
COPY public ./public
USER bun
EXPOSE 12253
ENV NODE_ENV=production
CMD ["bun", "run", "server.mjs"]