code-datascience / Dockerfile
delqhi's picture
Deploy code-datascience agent
d07c56c verified
Raw
History Blame Contribute Delete
213 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 45999
CMD ["node", "dist/src/cli.js", "serve-a2a"]