Skip to content
Snippets Groups Projects
Dockerfile 370 B
FROM debian:12.8-slim

ARG PLATFORM="linux.x86_64"
ARG GODOT_VERSION="4.3-stable"

RUN apt-get update \
    && apt-get install -y wget unzip libfontconfig1 \
    && rm -rf /var/lib/apt/lists/*

COPY commands/godot_build.sh /usr/bin/godot_build
COPY commands/godot_install.sh /usr/bin/godot_install

RUN godot_install $GODOT_VERSION $PLATFORM && cp ./godot /usr/bin/godot