• Joined on 2021-12-19

crittable-ci-godot (latest)

Published 2026-06-21 15:29:41 -06:00 by shon

Installation

docker pull gitea.pb4uplay.com/shon/crittable-ci-godot:latest
sha256:3b2bf36400585d9d04c5a5388ed05e08627aab1050616ab058fa5b1ed09f2ced

Images

Digest OS / Arch Size
ce3543b8cf linux/amd64 2.5 GiB

Image Layers ( linux/amd64)

ARG RELEASE
ARG LAUNCHPAD_BUILD_ARCH
LABEL org.opencontainers.image.version=24.04
ADD file:46ac5b8ee4c64ad9ebe840abd5619f571a617ac19483764d47d0eeba7907934f in /
CMD ["/bin/bash"]
ENV APP_UID=1654 ASPNETCORE_HTTP_PORTS=8080 DOTNET_RUNNING_IN_CONTAINER=true
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates libc6 libgcc-s1 libicu74 libssl3t64 libstdc++6 tzdata tzdata-legacy && rm -rf /var/lib/apt/lists/* # buildkit
RUN /bin/sh -c groupadd --gid=$APP_UID app && useradd --no-log-init --uid=$APP_UID --gid=$APP_UID --create-home app # buildkit
ENV DOTNET_VERSION=10.0.8
COPY /dotnet /usr/share/dotnet # buildkit
RUN /bin/sh -c ln -s /usr/share/dotnet/dotnet /usr/bin/dotnet # buildkit
ENV ASPNET_VERSION=10.0.8
COPY /dotnet /usr/share/dotnet # buildkit
ENV DOTNET_GENERATE_ASPNET_CERTIFICATE=false DOTNET_NOLOGO=true DOTNET_SDK_VERSION=10.0.300 DOTNET_USE_POLLING_FILE_WATCHER=true NUGET_XMLDOC_MODE=skip POWERSHELL_DISTRIBUTION_CHANNEL=PSDocker-DotnetSDK-Ubuntu-24.04 DOTNET_ROLL_FORWARD=Major
RUN /bin/sh -c apt-get update && apt-get install -y --no-install-recommends curl git libatomic1 wget && rm -rf /var/lib/apt/lists/* # buildkit
COPY /dotnet /usr/share/dotnet # buildkit
RUN /bin/sh -c ln -s /usr/share/dotnet/dnx /usr/bin/dnx && dotnet help # buildkit
RUN /bin/sh -c powershell_version=7.6.1 && curl --fail --show-error --location --output PowerShell.Linux.x64.$powershell_version.nupkg https://powershellinfraartifacts-gkhedzdeaghdezhr.z01.azurefd.net/tool/$powershell_version/PowerShell.Linux.x64.$powershell_version.nupkg && powershell_sha512='a68b53b8c4408a93318b6c734904cbc7e817e89b370b4b4bb74d52e5403da4f8dde7349dad3d1ed8869b4a0e4e83a88fb7547af8b9b36a2854e31f8e1606fcd1' && echo "$powershell_sha512 PowerShell.Linux.x64.$powershell_version.nupkg" | sha512sum -c - && mkdir --parents /usr/share/powershell && dotnet tool install --add-source / --tool-path /usr/share/powershell --version $powershell_version PowerShell.Linux.x64 && dotnet nuget locals all --clear && rm PowerShell.Linux.x64.$powershell_version.nupkg && ln -s /usr/share/powershell/pwsh /usr/bin/pwsh && chmod 755 /usr/share/powershell/pwsh && find /usr/share/powershell -print | grep -i '.*[.]nupkg$' | xargs rm # buildkit
ARG DEBIAN_FRONTEND=noninteractive
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c apt-get update && apt-get install -y --no-install-recommends ca-certificates curl gnupg && mkdir -p /etc/apt/keyrings && curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_20.x nodistro main" > /etc/apt/sources.list.d/nodesource.list && apt-get update && apt-get install -y --no-install-recommends git nodejs && rm -rf /var/lib/apt/lists/* # buildkit
RUN |1 DEBIAN_FRONTEND=noninteractive /bin/sh -c dotnet --info && node --version && git --version # buildkit
ARG DEBIAN_FRONTEND=noninteractive
ARG GODOT_VERSION=4.7
ARG GODOT_RELEASE=4.7-stable
RUN |3 DEBIAN_FRONTEND=noninteractive GODOT_VERSION=4.7 GODOT_RELEASE=4.7-stable /bin/sh -c apt-get update && apt-get install -y --no-install-recommends libfontconfig1 unzip wget && rm -rf /var/lib/apt/lists/* # buildkit
RUN |3 DEBIAN_FRONTEND=noninteractive GODOT_VERSION=4.7 GODOT_RELEASE=4.7-stable /bin/sh -c wget -nv --show-progress -O /tmp/godot.zip https://github.com/godotengine/godot-builds/releases/download/${GODOT_RELEASE}/Godot_v${GODOT_RELEASE}_mono_linux_x86_64.zip && unzip -q /tmp/godot.zip -d /tmp/godot && mv /tmp/godot/Godot_v${GODOT_RELEASE}_mono_linux_x86_64 /usr/local/lib/godot-mono && ln -s /usr/local/lib/godot-mono/Godot_v${GODOT_RELEASE}_mono_linux.x86_64 /usr/local/bin/godot && rm -rf /tmp/godot.zip /tmp/godot # buildkit
RUN |3 DEBIAN_FRONTEND=noninteractive GODOT_VERSION=4.7 GODOT_RELEASE=4.7-stable /bin/sh -c wget -nv --show-progress -O /tmp/templates.tpz https://github.com/godotengine/godot-builds/releases/download/${GODOT_RELEASE}/Godot_v${GODOT_RELEASE}_mono_export_templates.tpz && mkdir -p /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable.mono && unzip -q /tmp/templates.tpz -d /tmp/templates && mv /tmp/templates/templates/* /root/.local/share/godot/export_templates/${GODOT_VERSION}.stable.mono/ && rm -rf /tmp/templates.tpz /tmp/templates # buildkit
RUN |3 DEBIAN_FRONTEND=noninteractive GODOT_VERSION=4.7 GODOT_RELEASE=4.7-stable /bin/sh -c godot --headless --version # buildkit
ENV NUGET_PACKAGES=/opt/nuget-cache
COPY . /tmp/restore/ # buildkit
RUN |3 DEBIAN_FRONTEND=noninteractive GODOT_VERSION=4.7 GODOT_RELEASE=4.7-stable /bin/sh -c cd /tmp/restore && dotnet restore Crittable.slnx && rm -rf /tmp/restore && chmod -R a+rX /opt/nuget-cache # buildkit

Labels

Key Value
org.opencontainers.image.version 24.04
Details
Container
2026-06-21 15:29:41 -06:00
107
OCI / Docker
Versions (1) View all
latest 2026-06-21