diff --git a/LOCAL_SETUP_DOCKER.md b/LOCAL_SETUP_DOCKER.md new file mode 100644 index 000000000..46921ada0 --- /dev/null +++ b/LOCAL_SETUP_DOCKER.md @@ -0,0 +1,11 @@ +# LOCAL SETUP DOCKER + +## commands list + +```bash +docker run -it --rm -v $PWD:/code -w /code -p 3001:3001 node:20.4 /bin/bash +# inside the container +npm ci +npm run download-dist +npm run dev +```