This is a proof of concept application running Next.js 12.2 in a Docker container.
To build the Docker image, run:
docker build -t nextjs-vulnerability-poc .
To run the container, use:
docker run -p 3000:3000 nextjs-vulnerability-poc
The application will be available at http://localhost:3000
To run the application locally without Docker:
- Install dependencies:
npm install
- Run the development server:
npm run dev
The application will be available at http://localhost:3000