Commit 9efa22

2026-03-17 10:03:35 Matt Hughes: -/-
development/building pointcaster.md ..
@@ 40,7 40,7 @@
The following commands assume you have a working docker installation capable of running Windows containers on the command line.
To build the Windows docker image:
- ```pwsh
+ ```sh
docker build -f scripts/windows.Dockerfile -t pointcaster-win .
```
To produce a Pointcaster installer package:
@@ 51,8 51,14 @@
```
docker run -it -v ./:C:\pointcaster -w C:\pointcaster pointcaster-win powershell
```
- And from inside:
- ```pwsh
+ > [!TIP]
+ > You might benefit from passing some docker args to fully utilise available resources, e.g.:
+ > ```sh
+ > docker run --memory=20G --cpus=16 ...
+ > ```
+
+ And from inside the container:
+ ```sh
cmake --preset windows-release
cmake --build build/windows-release
cmake --build build/windows-release --target install
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9