Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -10,7 +10,8 @@ RUN apt-get update && \
|
|
10 |
|
11 |
WORKDIR /app
|
12 |
|
13 |
-
RUN
|
|
|
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
|