P001/mcp-proxy-server
0
1FROM ghcr.io/ptbsare/mcp-proxy-server/mcp-proxy-server:latest2 3COPY sync_data.sh /sync_data.sh4 5RUN chmod -R 777 /mcp-proxy-server/config && \6 mkdir -p /tools && \7 chmod -R 777 /tools && \8 chmod +x /sync_data.sh9 10ENV PORT=786011ENV HOST=0.0.0.012 13EXPOSE 786014 15ENTRYPOINT ["/sync_data.sh"]