sin-code-integration / Dockerfile
GitHub Actions
Deploy SIN-Code-Integration from GitHub Actions
09707d8
Raw
History Blame Contribute Delete
211 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"]