File tree Expand file tree Collapse file tree 2 files changed +29
-0
lines changed
Expand file tree Collapse file tree 2 files changed +29
-0
lines changed Original file line number Diff line number Diff line change 1+ ** /node_modules
2+ .tox
3+ docs
4+ /applications
5+ /infrastructure
6+ /blueprint
7+ /test
8+ .github
9+ .git
10+ .vscode
11+ /deployment
12+ skaffold.yaml
13+ * .egg-info
14+ __pycache__
15+ .hypothesis
16+ .coverage
17+ .pytest_cache
18+ /application-templates
19+ /deployment-configuration
20+ /cloud-harness
21+ .openapi-generator
22+ docker-compose.yaml
23+ .history
Original file line number Diff line number Diff line change @@ -5,11 +5,17 @@ FROM $CLOUDHARNESS_BASE
55COPY libraries/cloudharness-utils/requirements.txt /libraries/cloudharness-utils/requirements.txt
66RUN pip install -r /libraries/cloudharness-utils/requirements.txt --no-cache-dir
77
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+
811COPY tools/cloudharness-test/requirements.txt /tools/cloudharness-test/requirements.txt
912RUN pip install -r /tools/cloudharness-test/requirements.txt --no-cache-dir
1013
1114COPY libraries/cloudharness-utils /libraries/cloudharness-utils
1215RUN pip install -e /libraries/cloudharness-utils
1316
17+ COPY tools/deployment-cli-tools /tools/deployment-cli-tools
18+ RUN pip install -e /tools/deployment-cli-tools
19+
1420COPY tools/cloudharness-test /tools/cloudharness-test
1521RUN pip install -e /tools/cloudharness-test
You can’t perform that action at this time.
0 commit comments