superassistant / Dockerfile
ka1q's picture
Update Dockerfile
52f2e4d verified
raw
history blame contribute delete
344 Bytes
FROM node:20-alpine
RUN apk add --no-cache \
python3 \
py3-pip \
curl \
bash \
jq
RUN npm install -g @srbhptl39/mcp-superassistant-proxy@latest
USER node
WORKDIR /home/node
COPY --chown=node:node entrypoint.sh /home/node/entrypoint.sh
RUN chmod +x /home/node/entrypoint.sh
EXPOSE 7860
CMD ["/home/node/entrypoint.sh"]