Docker is a popular containerization platform that simplifies the deployment and management of applications by packaging them into containers. The GitHub Container Registry (GHCR) allows you to store and manage Docker container images within GitHub.

docker pull ghcr.io/owasp-noir/noir:latest

To reference this Docker image in your own Dockerfile, you can use the following FROM statement:

FROM ghcr.io/owasp-noir/noir:latest

or Replace <version> with the specific version tag you need.

FROM ghcr.io/owasp-noir/noir:<version>