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"]