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
cp -a selectedData.csv DevSecOps-MaturityModel/selectedData.csv
57
+
58
+
cd DevSecOps-MaturityModel
59
+
docker build -t $IMAGE_NAME .
60
+
docker push $IMAGE_NAME
61
+
```
62
+
This approach also allows teams to perform self assessment with changes tracked in a repository.
63
+
64
+
## Amazon EC2 Instance
65
+
66
+
1. In the _EC2_ sidenav select _Instances_ and click _Launch Instance_
67
+
2. In _Step 1: Choose an Amazon Machine Image (AMI)_ choose an _Amazon
68
+
Linux AMI_ or _Amazon Linux 2 AMI_
69
+
3. In _Step 3: Configure Instance Details_ unfold _Advanced Details_ and
70
+
copy the script below into _User Data_
71
+
4. In _Step 6: Configure Security Group_ add a _Rule_ that opens port 80
72
+
for HTTP
73
+
5. Launch your instance
74
+
6. Browse to your instance's public DNS
75
+
76
+
```
77
+
#!/bin/bash
78
+
yum update -y
79
+
yum install -y docker
80
+
service docker start
81
+
docker pull bkimminich/juice-shop
82
+
docker run -d -p 80:80 wurstbrot/dsomm:latest
83
+
```
84
+
33
85
# Credits
34
86
* The dimension _Test and Verifiacation_ is based on Christian Schneiders [Security DevOps Maturity Model (SDOMM)](https://www.christian-schneider.net/SecurityDevOpsMaturityModel.html). _Application tests_ and _Infrastructure tests_ are added by Timo Pagel. Also, the sub-dimension _Static depth_ has been evaluated by security experts at [OWASP Stammtisch Hamburg](https://www.owasp.org/index.php/OWASP_German_Chapter_Stammtisch_Initiative/Hamburg).
35
87
* The sub-dimension <i>Process</i> has been added after a discussion with [Francois Raynaud](https://www.linkedin.com/in/francoisraynaud/) that reactive activities are missing.
0 commit comments