LOCAL SETUP file using docker added.

This commit is contained in:
Riccardo Crippa 2025-05-21 15:02:18 +02:00
parent 0df6c46f3f
commit b76d48ec94

11
LOCAL_SETUP_DOCKER.md Normal file
View file

@ -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
```