File tree Expand file tree Collapse file tree 1 file changed +3
-6
lines changed
Expand file tree Collapse file tree 1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -2,20 +2,17 @@ ARG CLOUDHARNESS_BASE
22
33FROM $CLOUDHARNESS_BASE
44
5+ # Install cloudharness-utils first (required by other packages)
56COPY libraries/cloudharness-utils/requirements.txt /libraries/cloudharness-utils/requirements.txt
67RUN pip install -r /libraries/cloudharness-utils/requirements.txt --no-cache-dir
78
8- COPY tools/deployment-cli-tools/requirements.txt /tools/deployment-cli-tools/requirements.txt
9- RUN pip install -r /tools/deployment-cli-tools/requirements.txt --no-cache-dir
10-
11- COPY tools/cloudharness-test/requirements.txt /tools/cloudharness-test/requirements.txt
12- RUN pip install -r /tools/cloudharness-test/requirements.txt --no-cache-dir
13-
149COPY libraries/cloudharness-utils /libraries/cloudharness-utils
1510RUN pip install -e /libraries/cloudharness-utils
1611
12+ # Install deployment-cli-tools (depends on cloudharness-utils)
1713COPY tools/deployment-cli-tools /tools/deployment-cli-tools
1814RUN pip install -e /tools/deployment-cli-tools
1915
16+ # Install cloudharness-test (depends on both above)
2017COPY tools/cloudharness-test /tools/cloudharness-test
2118RUN pip install -e /tools/cloudharness-test
You can’t perform that action at this time.
0 commit comments