feat: add Node.js worker with Claude Code SDK

This commit is contained in:
2026-05-25 18:53:43 +02:00
parent 1e69b1aec2
commit d8d7e1a66f
3 changed files with 133 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM node:20-slim
RUN apt-get update && apt-get install -y wget && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json ./
RUN npm install --production
COPY index.js ./
EXPOSE 3001
CMD ["node", "index.js"]