Skip to content

Commit

Permalink
(test) remediate medium vulnerabilities
Browse files Browse the repository at this point in the history
  • Loading branch information
colton-gabertan committed Feb 25, 2025
1 parent 8988eb7 commit b47bc90
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions apps/nginx-tutorial/nginx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ spec:
containers:
- name: nginx
image: nginx:alpine
securityContext:
runAsNonRoot: true
allowPrivilegeEscalation: false
capabilities:
drop:
- ALL
add:
- NET_BIND_SERVICE
ports:
- containerPort: 80
---
Expand Down

1 comment on commit b47bc90

@colton-gabertan
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hypothetical remediation to satisfy medium severity vulnerability check by snyk

Please sign in to comment.