Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set default container entrypoint #275

Open
wants to merge 2 commits into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions containerize/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -83,3 +83,4 @@ RUN groupadd dast && \

USER rapidast
WORKDIR /opt/rapidast
ENTRYPOINT ["./rapidast.py"]
6 changes: 1 addition & 5 deletions e2e-tests/manifests/rapidast-nessus-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,7 @@ metadata:
name: rapidast-nessus
spec:
containers:
- command:
- bash
- -c
- ./rapidast.py
env:
- env:
- name: HOME
value: /opt/rapidast
- name: NESSUS_USER
Expand Down
6 changes: 1 addition & 5 deletions e2e-tests/manifests/rapidast-oobtkube-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,7 @@ metadata:
app: rapidast-oobtkube
spec:
containers:
- command:
- bash
- -c
- ./rapidast.py
env:
- env:
- name: HOME
value: /opt/rapidast
image: ${IMAGE} # quay.io/redhatproductsecurity/rapidast:latest
Expand Down
6 changes: 1 addition & 5 deletions e2e-tests/manifests/rapidast-trivy-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ metadata:
name: rapidast-trivy
spec:
containers:
- command:
- bash
- -c
- ./rapidast.py
env:
- env:
- name: HOME
value: /opt/rapidast
image: ${IMAGE} # quay.io/redhatproductsecurity/rapidast:latest
Expand Down
Loading