eienmojiki commited on
Commit
b17ca33
·
verified ·
1 Parent(s): f7ac8fc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -1
Dockerfile CHANGED
@@ -10,7 +10,8 @@ RUN apt-get update && \
10
 
11
  WORKDIR /app
12
 
13
- RUN git clone https://kogakisaki:[email protected]/kogakisaki/leafcat-mcp.git
 
14
 
15
  RUN cd leafcat-mcp \
16
  && pip install --no-cache-dir -r requirements.txt
 
10
 
11
  WORKDIR /app
12
 
13
+ RUN --mount=type=secret,id=REPO,mode=0444,required=true \
14
+ git clone $(cat /run/secrets/REPO) leafcat-mcp
15
 
16
  RUN cd leafcat-mcp \
17
  && pip install --no-cache-dir -r requirements.txt