- Schweiz
- https://me.arthurerlich.de
- Joined on
2025-05-30
Block a user
godot-ci (4.7.1)
Installation
docker pull git.arthurerlich.de/haylan/godot-ci:4.7.1sha256:6a895273a2411d2a850ef034fb30e2df87d227aa7d5307e882cc4f29bbc6ffed
Images
| Digest | OS / Arch | Size |
|---|---|---|
| 9a2da65217 | linux/amd64 | 2.3 GiB |
Image Layers ( linux/amd64)
| # debian.sh --arch 'amd64' out/ 'bookworm' '@1785715200' |
| ARG GODOT_VERSION=4.7.1 |
| ARG BLENDER_URL=https://download.blender.org/release/Blender5.2/blender-5.2.0-linux-x64.tar.xz |
| RUN |2 GODOT_VERSION=4.7.1 BLENDER_URL=https://download.blender.org/release/Blender5.2/blender-5.2.0-linux-x64.tar.xz /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl unzip xz-utils libfontconfig1 build-essential scons pkg-config libx11-dev libxcursor-dev libxinerama-dev libgl1-mesa-dev libasound2-dev libpulse-dev libudev-dev libxi-dev libxrandr-dev libwayland-dev mingw-w64 libxkbcommon0 libsm6 libice6 && update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix && update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix && rm -rf /var/lib/apt/lists/* && curl -fsSLO "https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-stable/Godot_v${GODOT_VERSION}-stable_linux.x86_64.zip" && curl -fsSLO "https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}-stable/Godot_v${GODOT_VERSION}-stable_export_templates.tpz" && mkdir -p "/root/.local/share/godot/export_templates/${GODOT_VERSION}.stable" && unzip -q "Godot_v${GODOT_VERSION}-stable_linux.x86_64.zip" && mv "Godot_v${GODOT_VERSION}-stable_linux.x86_64" /usr/local/bin/godot && unzip -q "Godot_v${GODOT_VERSION}-stable_export_templates.tpz" && mv templates/* "/root/.local/share/godot/export_templates/${GODOT_VERSION}.stable/" && rm -rf "Godot_v${GODOT_VERSION}-stable_linux.x86_64.zip" "Godot_v${GODOT_VERSION}-stable_export_templates.tpz" templates && curl -fsSL "$BLENDER_URL" -o /tmp/blender.tar.xz && mkdir -p /opt/blender && tar -xJf /tmp/blender.tar.xz -C /opt/blender --strip-components=1 && ln -sf /opt/blender/blender /usr/local/bin/blender && rm /tmp/blender.tar.xz && mkdir -p /root/.config/godot && printf '%s\n' '[gd_resource type="EditorSettings" format=3]' '' '[resource]' 'filesystem/import/blender/blender_path = "/usr/local/bin/blender"' > "/root/.config/godot/editor_settings-${GODOT_VERSION%.*}.tres" # buildkit |