tastelikefeet commited on
Commit
ae80bcd
·
verified ·
1 Parent(s): 439cb69

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -0
Dockerfile CHANGED
@@ -29,6 +29,13 @@ RUN pip install --no-cache-dir gradio mcp openai -U
29
 
30
  RUN python -m playwright install --with-deps chromium
31
 
 
 
 
 
 
 
 
32
  RUN git clone https://github.com/modelscope/mcp-central.git
33
 
34
  WORKDIR /app/mcp-central/examples/lite_research
 
29
 
30
  RUN python -m playwright install --with-deps chromium
31
 
32
+ RUN useradd -m -u 1000 user
33
+
34
+ USER user
35
+
36
+ ENV HOME=/home/user \
37
+ PATH=/home/user/.local/bin:$PATH
38
+
39
  RUN git clone https://github.com/modelscope/mcp-central.git
40
 
41
  WORKDIR /app/mcp-central/examples/lite_research