From ff0b5c1850d4f38b6be78fdc1d61b270fe091db1 Mon Sep 17 00:00:00 2001 From: Harihar Jeevan Date: Sun, 12 Jul 2026 14:41:53 +0530 Subject: [PATCH] Changes: Update node version in the the dockerfile to match package.json; Update docker build command in the readme file. --- Dockerfile | 2 +- README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 22f93ab..0fbf0f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM node:20.9.0-alpine +FROM node:24.15.0-alpine WORKDIR /app diff --git a/README.md b/README.md index 8ff26ba..73fb48d 100644 --- a/README.md +++ b/README.md @@ -130,10 +130,10 @@ You can also run the application using Docker: ```bash # Build and start the container -docker-compose up --build +docker compose up --build # Run in detached mode -docker-compose up -d +docker compose up -d ``` Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.