# Next.js Docker Hello World
A simple Hello World application using Next.js 12.2 and Docker.
## Prerequisites
- Docker
## Building and Running the Application
1. Build the Docker image:
```bash
docker build -t nextjs-docker-hello .
```
2. Run the container:
```bash
docker run -p 3000:3000 nextjs-docker-hello
```
3. Open your browser and visit:
```
http://localhost:3000
```
## Development
To run the application in development mode without Docker:
1. Install dependencies:
```bash
npm install
```
2. Start the development server:
```bash
npm run dev
```
[4.0K] /data/pocs/45790fa0f051522eab20dce9802d99442508e7ac
├── [ 341] Dockerfile
├── [ 654] middleware.ts
├── [ 568] package.json
├── [4.0K] pages
│ ├── [2.0K] admin.tsx
│ ├── [4.0K] api
│ │ └── [4.0K] auth
│ │ ├── [1015] login.ts
│ │ └── [ 596] logout.ts
│ ├── [ 962] index.tsx
│ └── [3.3K] login.tsx
├── [ 567] README.md
└── [ 509] tsconfig.json
3 directories, 10 files