Kaballas commited on
Commit
fd3804f
·
verified ·
1 Parent(s): d7e6802

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -1
Dockerfile CHANGED
@@ -10,8 +10,13 @@ USER user
10
  WORKDIR /home/user/app
11
 
12
  ENV HOME=/home/user \
13
- PATH=/home/user/.local/bin:$PATH
 
 
14
 
15
  COPY --chown=user . /home/user/app
16
 
 
 
17
 
 
 
10
  WORKDIR /home/user/app
11
 
12
  ENV HOME=/home/user \
13
+ PATH=/home/user/.local/bin:$PATH \
14
+ MCP_HTTP_HOST=0.0.0.0 \
15
+ MCP_API_KEY=your-secure-key
16
 
17
  COPY --chown=user . /home/user/app
18
 
19
+ # Use the documented installation and startup approach
20
+ RUN python install.py --server-mode --enable-http-api
21
 
22
+ CMD ["python", "scripts/run_http_server.py"]