
Minimal Next.js 12.2 application containerized with Docker, providing a simple Hello World web app and local development instructions.
A simple Hello World application built with Next.js 12.2 and Docker.
To build the Docker image, run:
docker build -t nextjs-docker-demo .
To run the container, use:
docker run -p 3000:3000 nextjs-docker-demo
The application will be available at http://localhost:3000
For local development without Docker:
npm install
npm run dev
The application will be available at http://localhost:3000