mcp-proxy-server / Dockerfile
aBER0724's picture
Update Dockerfile
8685e83 verified
raw
history blame
298 Bytes
FROM ghcr.io/ptbsare/mcp-proxy-server/mcp-proxy-server:latest
COPY sync_data.sh /sync_data.sh
RUN chmod -R 777 /mcp-proxy-server/config && \
mkdir -p /tools && \
chmod -R 777 /tools && \
chmod +x /sync_data.sh
ENV PORT=7860
ENV HOST=0.0.0.0
EXPOSE 7860
ENTRYPOINT ["/sync_data.sh"]