sin-github-issues / Dockerfile
delqhi's picture
Deploy A2A-SIN-GitHub-Issues with a2a HTTP server fix
5a8fc31 verified
Raw
History Blame Contribute Delete
212 Bytes
FROM node:22-bookworm-slim
WORKDIR /app
COPY package.json package-lock.json* ./
RUN npm install
COPY . .
RUN npm run build
ENV PORT=7860
ENV HOST=0.0.0.0
EXPOSE 7860
CMD ["node", "dist/src/cli.js", "serve-a2a"]