An intentionally vulnerable nextjs application.
Make sure you have Node.js installed or install a version of Node from nvm.
git clone https://github.com/Contrast-Security-OSS/NodeTestBenches.git # or clone your own fork cd NodeTestBenches/express npm install # run in development mode npm run dev # or build and run in production mode npm run build && npm startYour app should now be running on localhost:3000.
Build the Docker container with the following CLI command:
docker build . -t <container name>Run the container by running:
docker run -p 3000:3000 <container name>