This program will automatically build a docker image with the ps3dev toolchain ready to be used for homebrew development.
Build the image:
docker build -t ps3dev-docker .
Copy the helper script:
cp ps3dev-docker.sh /usr/local/bin
Use the helper script to run 'make' on the current directory:
ps3dev-docker.sh make
Or, manually run 'make' on the current directory:
docker run -v `pwd`:/build ps3dev-docker make
Save the image:
docker save ps3dev-docker | bzip2 > ps3dev-docker.tar.bz2
Load the image:
docker load < bzip2 -dc ps3dev-docker.tar.bz2