increase process priority instead of offloading to workers

This commit is contained in:
2025-01-22 15:00:32 +09:00
parent c4c7c921d7
commit 4f8dcebcd1
6 changed files with 45 additions and 16 deletions
+3 -2
View File
@@ -2,5 +2,6 @@ FROM node:current-alpine
WORKDIR /app
COPY package.json package-lock.json ./
RUN npm install
COPY . .
CMD ["node", "js/index.js"]
COPY public ./public
COPY src ./src
CMD ["node", "src/index.js"]