Everything is hand-crafted, from source code to assets:
Play the game online on itch.io
Run to mount local project code inside the container and bind ports
docker run --name phaser --rm -v "$PWD":/usr/src/app -p 8080:8080 -d nidup/phaser:latest
Your container should appears in the list when typing,
docker ps
docker exec -it phaser npm install
Launch webpack server in watch mode,
docker exec -it phaser npm run dev
You can access your project in your browser,
http://localhost:8080/
docker exec -it phaser npm run build
git add build/bundle.js
git commit
git push
MIT for the code of this repository (src folder).
CC BY-SA 4.0 for the artwork (assets folder).