Currently whenever we build the `Dockerfile` file for local development using kurtosis , it recompiles everything on my laptop, even if no changes are made. This takes about 120 seconds on my laptop (might be faster on others).
Conservatively, I created a new Dockerfile.dev, so that the original file is kept the same, even though its pretty similar.
This uses `--mount-type=cache` saving the target and registry folder across builds.
**Usage**
```sh
docker build -f Dockerfile.dev -t lighthouse:dev .
```
Co-Authored-By: Kevaundray Wedderburn <kevtheappdev@gmail.com>