fabmax / physx-js-webidl

Javascript WASM bindings for Nvidia PhysX
MIT License
119 stars 28 forks source link

added docker-compose.yaml #20

Closed shannon closed 1 year ago

shannon commented 1 year ago

I had some issues with the build process due to /root/packman-repo not being persistent across command runs.

So I created a docker-compose.yaml file and the build steps become much simpler.

# Build the image
docker compose up

# Build Release
docker compose run --rm builder ./make.sh

# Build Profile
docker compose run --rm builder ./make-profile.sh

# Build Debug
docker compose run --rm builder ./make-debug.sh
fabmax commented 1 year ago

Awesome!