Skip to content
Snippets Groups Projects
Dockerfile 341 B
Newer Older
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 \
    && rm -rf /var/lib/apt/lists/*

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

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