HuggingFace0920 commited on
Commit
0344f76
·
verified ·
1 Parent(s): cbe8748

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +12 -0
Dockerfile ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM ghcr.io/ptbsare/mcp-proxy-server/mcp-proxy-server:latest
2
+
3
+ COPY sync_data.sh /sync_data.sh
4
+
5
+ RUN chmod -R 777 /mcp-proxy-server/config && \
6
+ mkdir -p /tools && \
7
+ chmod -R 777 /tools && \
8
+ chmod +x /sync_data.sh
9
+
10
+ EXPOSE 3663
11
+
12
+ ENTRYPOINT ["/sync_data.sh"]