Spaces:
Build error
Build error
Update with workflow
Browse files- Dockerfile +4 -4
Dockerfile
CHANGED
|
@@ -86,14 +86,14 @@ WORKDIR /
|
|
| 86 |
### Copy from Repo
|
| 87 |
### ------
|
| 88 |
RUN mkdir -p /langworkflow
|
| 89 |
-
RUN --mount=type=secret,id=
|
| 90 |
-
--mount=type=secret,id=
|
| 91 |
git clone --branch $(cat /run/secrets/TAG_WORKFLOW) $(cat /run/secrets/URL_WORKFLOW) /langworkflow
|
| 92 |
|
| 93 |
RUN mkdir -p /api
|
| 94 |
|
| 95 |
-
RUN --mount=type=secret,id=
|
| 96 |
-
--mount=type=secret,id=
|
| 97 |
git clone --branch $(cat /run/secrets/TAG_PROJECT) $(cat /run/secrets/URL_PROJECT) /api
|
| 98 |
|
| 99 |
|
|
|
|
| 86 |
### Copy from Repo
|
| 87 |
### ------
|
| 88 |
RUN mkdir -p /langworkflow
|
| 89 |
+
RUN --mount=type=secret,id=TAG_WORKFLOW,mode=0444,required=true \
|
| 90 |
+
--mount=type=secret,id=URL_WORKFLOW,mode=0444,required=true \
|
| 91 |
git clone --branch $(cat /run/secrets/TAG_WORKFLOW) $(cat /run/secrets/URL_WORKFLOW) /langworkflow
|
| 92 |
|
| 93 |
RUN mkdir -p /api
|
| 94 |
|
| 95 |
+
RUN --mount=type=secret,id=TAG_PROJECT,mode=0444,required=true \
|
| 96 |
+
--mount=type=secret,id=URL_PROJECT,mode=0444,required=true \
|
| 97 |
git clone --branch $(cat /run/secrets/TAG_PROJECT) $(cat /run/secrets/URL_PROJECT) /api
|
| 98 |
|
| 99 |
|