Skip to content

Commit 6f49096

Browse files
committed
fix: Update test api docker image
1 parent 2a6d132 commit 6f49096

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

test/test-api/.dockerignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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

test/test-api/Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@ FROM $CLOUDHARNESS_BASE
55
COPY libraries/cloudharness-utils/requirements.txt /libraries/cloudharness-utils/requirements.txt
66
RUN 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+
811
COPY tools/cloudharness-test/requirements.txt /tools/cloudharness-test/requirements.txt
912
RUN pip install -r /tools/cloudharness-test/requirements.txt --no-cache-dir
1013

1114
COPY libraries/cloudharness-utils /libraries/cloudharness-utils
1215
RUN 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+
1420
COPY tools/cloudharness-test /tools/cloudharness-test
1521
RUN pip install -e /tools/cloudharness-test

0 commit comments

Comments
 (0)