chimera-mcp / Dockerfile
ScottzillaSystems's picture
Create Dockerfile
59549b5 verified
Raw
History Blame Contribute Delete
213 Bytes
FROM node:20-slim
RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/*
WORKDIR /app
COPY package.json .
RUN npm install --production
COPY server.mjs .
EXPOSE 7860
CMD ["node", "server.mjs"]