From d7d41b848a8c7e34ce905620e644139859cde265 Mon Sep 17 00:00:00 2001 From: Kevin Bloch Date: Tue, 22 Apr 2025 18:08:19 +0200 Subject: [PATCH] Update to (latest stable) Godot 4.4.1 --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7046487..a9f359e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,11 +6,11 @@ RUN apt-get update && \ apt-get clean && \ rm -rf /var/lib/apt/lists/* -# Download and unzip Godot v4.1.1 -RUN wget https://downloads.tuxfamily.org/godotengine/4.1.1/Godot_v4.1.1-stable_linux.x86_64.zip && \ - unzip Godot_v4.1.1-stable_linux.x86_64.zip && \ - mv Godot_v4.1.1-stable_linux.x86_64 /usr/bin/godot && \ - rm Godot_v4.1.1-stable_linux.x86_64.zip +# Download and unzip Godot v4.4.1 +RUN wget https://github.com/godotengine/godot/releases/download/4.4.1-stable/Godot_v4.4.1-stable_linux.x86_64.zip && \ + unzip Godot_v4.4.1-stable_linux.x86_64.zip && \ + mv Godot_v4.4.1-stable_linux.x86_64 /usr/bin/godot && \ + rm Godot_v4.4.1-stable_linux.x86_64.zip WORKDIR /opt/test-runner COPY . .