ka1q commited on
Commit
07043be
·
verified ·
1 Parent(s): 5b1d2c9

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +21 -0
Dockerfile ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM node:20-alpine node:20-alpine
2
+
3
+ RUN apk add --no-cache \ apk add --no-cache \
4
+ python3 \ python3 \
5
+ py3-pip \ py3-pip \
6
+ curl \ curl \
7
+ bash \ bash \
8
+ jq jq
9
+
10
+ RUN npm install -g @srbhptl39/mcp-superassistant-proxy@latest npm install -g @srbhptl39/mcp-superassistant-proxy@latest
11
+
12
+ USER node node
13
+
14
+ WORKDIR /home/node /home/node
15
+
16
+ COPY --chown=node:node entrypoint.sh /home/node/entrypoint.sh --chown=node:node entrypoint.sh /home/node/entrypoint.sh
17
+ RUN chmod +x /home/node/entrypoint.sh chmod +x /home/node/entrypoint.sh
18
+
19
+ EXPOSE 7860
20
+
21
+ CMD ["/home/node/entrypoint.sh"]