Share
## https://sploitus.com/exploit?id=9CE57DC1-5411-5FDD-8CC9-C7EB1F43C494
# Next.js 12.2 Hello World (Dockerized)

This is a simple proof-of-concept Hello World app using Next.js v12.2, containerized with Docker.

## Getting Started

### Build the Docker Image
```bash
docker build -t nextjs-hello-world .
```

### Run the Docker Container
```bash
docker run -p 3000:3000 nextjs-hello-world
```

Visit [http://localhost:3000](http://localhost:3000) to see the app running.