| # debian.sh --arch 'amd64' out/ 'bullseye' '@1776729600' |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends curl unzip zip ca-certificates && rm -rf /var/lib/apt/lists/* # buildkit |
| ENV GODOT_VERSION=4.6.2 |
| ENV GODOT_BIN_NAME=Godot_v4.6.2-stable |
| ENV GODOT_BIN=/godot/Godot_v4.6.2-stable_linux.x86_64 |
| RUN /bin/sh -c curl -fL -o godot.zip "https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}-stable/${GODOT_BIN_NAME}_linux.x86_64.zip" && curl -fL -o export_templates.tpz "https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}-stable/${GODOT_BIN_NAME}_export_templates.tpz" # buildkit |
| RUN /bin/sh -c mkdir -p /godot && unzip godot.zip -d /godot && rm godot.zip && chmod +x ${GODOT_BIN} # buildkit |
| RUN /bin/sh -c mkdir -p /godot/export_templates && unzip export_templates.tpz -d /godot/export_templates && rm export_templates.tpz # buildkit |