You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Start Docker then build the image from the Dockerfile:
24
+
```
25
+
docker build -t blb .
26
+
```
27
+
28
+
And run it, mounting the appropriate directories:
29
+
```
30
+
docker run --rm -it -v $(pwd):/src -v $(pwd)/.sccache:/root/.cache/sccache blb
31
+
```
32
+
33
+
Dependencies are included in the image so there's no need to run `./src/build/install-build-deps.sh`.
34
+
35
+
Now you can proceed with build scripts such as `npm run init`, `npm run sync -- --all` and `npm run build -- --debug_build=true --official_build=false`. See `./src/out` for the results.
0 commit comments