From 73202d6cd7e3a3caf65f4ba012c9a6257b22cd15 Mon Sep 17 00:00:00 2001 From: Max Sokolovsky Date: Tue, 13 Jun 2023 16:45:42 +0000 Subject: [PATCH] Pin the Node version in the Docker example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 433fea9b389..f2bf0609bef 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,7 @@ You can also use [Docker](https://www.docker.com/) to launch the website. The below command can be used to install the dependencies and run the site inside a container: ``` -docker run --rm -it -v $PWD:$PWD -w $PWD -p 3000:3000 node /bin/sh -c "yarn install && yarn start -h 0.0.0.0" +docker run --rm -it -v $PWD:$PWD -w $PWD -p 3000:3000 node:18 /bin/sh -c "yarn install && yarn start -h 0.0.0.0" ``` Subsequent executions will check for updated dependencies, if there are none, it will skip the updates and quickly start the server.