refactor: flatten scheduler service to root schedulers dir

This commit is contained in:
Ruslan Bakiev
2026-02-23 11:04:47 +07:00
parent 6e40c96abd
commit 64b25bb189
6 changed files with 2 additions and 2 deletions

12
schedulers/Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM node:22-bookworm-slim
WORKDIR /app/scheduler
COPY package*.json ./
RUN npm ci --omit=dev
COPY run.mjs ./run.mjs
ENV NODE_ENV=production
CMD ["npm", "run", "start"]