docs: finalize installation instructions and infrastructure for overhauled worker

This commit is contained in:
AyrisAI
2026-05-14 19:14:43 +03:00
parent d815626479
commit 06789a25af
5 changed files with 101 additions and 63 deletions

View File

@@ -1,6 +1,6 @@
FROM node:20-alpine
# Install docker cli to be able to run 'docker logs' from within the container
# Install docker cli to be able to run 'docker exec' from within the container
# Note: You must mount /var/run/docker.sock when running this container
RUN apk add --no-cache docker-cli
@@ -11,6 +11,5 @@ RUN npm install
COPY . .
RUN npm run build
# Run using the start script (tsx apps/worker/main.ts)
CMD ["npm", "start"]