| ARG RELEASE |
| ARG LAUNCHPAD_BUILD_ARCH |
| LABEL org.opencontainers.image.ref.name=ubuntu |
| LABEL org.opencontainers.image.version=24.04 |
| ADD file:3077ee44db3cc7d38740d60a05c81418dd3825a007db473658464f52689e867b in / |
| CMD ["/bin/bash"] |
| ENV DEBIAN_FRONTEND=noninteractive |
| ENV GODOT_VERSION=4.6-stable |
| ENV DOTNET_ROOT=/usr/share/dotnet |
| ENV PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/share/dotnet:/usr/share/dotnet/tools |
| RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl git wget unzip xvfb libxcursor1 libxinerama1 libxrandr2 libxi6 libasound2t64 libgl1 libglu1-mesa nodejs npm && rm -rf /var/lib/apt/lists/* # buildkit |
| RUN /bin/sh -c curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel 10.0 --install-dir /usr/share/dotnet && ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit |
| RUN /bin/sh -c wget -q https://github.com/godotengine/godot/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_mono_linux_x86_64.zip && unzip -q Godot_v${GODOT_VERSION}_mono_linux_x86_64.zip && mv Godot_v${GODOT_VERSION}_mono_linux_x86_64 /opt/godot && chmod +x /opt/godot/Godot_v${GODOT_VERSION}_mono_linux.x86_64 && ln -s /opt/godot/Godot_v${GODOT_VERSION}_mono_linux.x86_64 /usr/local/bin/godot && rm Godot_v${GODOT_VERSION}_mono_linux_x86_64.zip # buildkit |
| ENV GODOT_BIN=/opt/godot/Godot_v4.6-stable_mono_linux.x86_64 |
| WORKDIR /workspace |