You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# purpose of this file is to run cypress E2E tests locally, we don't use it in other env
3
+
# because of statement above, we don't need to change settings to comply with some KICS requirements
4
+
1
5
version: "3.9"
2
6
services:
3
7
cypress:
4
8
build:
5
9
context: ../
6
10
dockerfile: cypress/Dockerfile
11
+
7
12
volumes:
8
13
- ../:/ng-app/
9
14
- /ng-app/node_modules/ # we don't want to override it by host machine
15
+
security_opt:
16
+
- label:user:testuser
17
+
- no-new-privileges:true
10
18
network_mode: host # important to be able to connect to localhost url on host machine
11
-
12
-
13
-
networks:
14
-
TRACE_X_FE:
19
+
# to comply with KICS requirement:
20
+
# [MEDIUM] Memory Not Limited
21
+
# Memory limits should be defined for each container. This prevents potential resource exhaustion by ensuring that containers consume not more than the designated amount of memory
0 commit comments