Ren'Py Docker image with Android and iOS support.
PC and Mac build
docker run --rm \
-v "local/path/to/game:/game" \
-v "local/path/to/build:/build" \
dinaki/renpy:latest \
sh renpy.sh launcher distribute --dest /build --no-update --package pc --package mac /game
Web build
docker run --rm \
-v "local/path/to/game:/game" \
-v "local/path/to/build:/build" \
dinaki/renpy:web \
sh renpy.sh launcher set_project /game && sh renpy.sh launcher web_build /game --dest /build/web
Android build
docker run --rm \
-v "local/path/to/game:/game" \
-v "local/path/to/build:/build" \
dinaki/renpy:android \
sh renpy.sh launcher android_build /game --dest /build
Create XCode project for iOS
docker run --rm \
-v "local/path/to/game:/game" \
-v "local/path/to/build:/build" \
dinaki/renpy:ios \
sh renpy.sh launcher ios_create /game /build/xcode
RENPY_VERSION
andlatest
- build for Win/Linux/MacRENPY_VERSION-android
andandroid
- build with RAPT for AndroidRENPY_VERSION-ios
andios
- build with Ren'iOS for making XCode projectRENPY_VERSION-web
andweb
- build for web