We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1574d17 commit 3ee8d53Copy full SHA for 3ee8d53
1 file changed
docs/applications/dependencies.md
@@ -70,14 +70,15 @@ harness:
70
branch_tag: v1.0.0
71
path: myrepo
72
```
73
-> Note that the path parameter is optional and its use should be restricted to necessity (e.g. name clashes)
+> Note that the path parameter is optional and unnecessary unless name clashes occur, like same repo and different branches
74
75
The directory structure will be as following:
76
77
Dockerfile
78
dependencies
79
- b.git
+ b
80
myrepo
81
+ d
82
.dockerignore
83
84
@@ -89,7 +90,7 @@ COPY dependencies .
89
90
or
91
```dockerfile
92
COPY dependencies/b/src .
-COPY dependencies/myrepo/b .
93
+COPY dependencies/myrepo/d .
94
95
96
> Note that Cloud Harness does not add the COPY/ADD statements to the Dockerfile
0 commit comments