This is a simple Node.js application used for demonstrating Docker and CircleCI concepts.
- Node.js 18 or higher
- Docker (optional)
- Clone the repository
- Install dependencies:
npm install
- Start the application:
npm start
The application will be available at http://localhost:5000
Build the Docker image:
docker build -t tutorial/circleci-node:18 .
Run the container:
docker run -d -p 5000:5000 --name nodetest01 tutorial/circleci-node:18
- Simple Express.js web server
- Docker support with Node.js 18
- Modern npm commands for production builds
- CircleCI integration ready
MIT