-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #769 from openva/deploy
Sync with Deploy
- Loading branch information
Showing
69 changed files
with
115 additions
and
252,401 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Use the OWASP ZAP Docker image as the base | ||
FROM zaproxy/zap-stable:latest | ||
|
||
# Set the working directory in the container | ||
WORKDIR /zap | ||
|
||
# Copy your application's specific ZAP scripts or configurations if any | ||
# COPY zap-configs/ /zap/zap-configs/ | ||
|
||
# Entrypoint to keep the container running and to use ZAP CLI as needed | ||
# This can be adjusted based on your specific use case | ||
ENTRYPOINT ["zap.sh"] | ||
|
||
EXPOSE 8080 | ||
|
||
# By default, run ZAP in daemon mode on a specific port if not overridden | ||
CMD ["-daemon", "-host", "0.0.0.0", "-port", "8080", "-config", "api.disablekey=true"] |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.