From d72f13a70e6759de64653e99700275f1e303d566 Mon Sep 17 00:00:00 2001 From: deed Date: Wed, 9 Feb 2022 21:16:24 +0100 Subject: [PATCH] Update Dockerfile --- godot4/Dockerfile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/godot4/Dockerfile b/godot4/Dockerfile index 12af44b..8fcf81e 100644 --- a/godot4/Dockerfile +++ b/godot4/Dockerfile @@ -28,16 +28,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ libxrandr-dev \ && rm -rf /var/lib/apt/lists/* -ENV GODOT_VERSION "4.0-alfa1" +ENV GODOT_VERSION "4.0-alfa2" -RUN wget https://downloads.tuxfamily.org/godotengine/4.0/alpha1/Godot_v4.0-alpha1_linux.64.zip \ - && wget https://downloads.tuxfamily.org/godotengine/4.0/alpha1/Godot_v4.0-alpha1_export_templates.tpz \ +RUN wget https://downloads.tuxfamily.org/godotengine/4.0/alpha2/Godot_v4.0-alpha2_linux.64.zip \ + && wget https://downloads.tuxfamily.org/godotengine/4.0/alpha2/Godot_v4.0-alpha2_export_templates.tpz \ && mkdir ~/.cache \ && mkdir -p ~/.config/godot \ && mkdir -p ~/.local/share/godot/templates/${GODOT_VERSION}.stable \ - && unzip Godot_v4.0-alpha1_linux.64.zip \ - && mv Godot_v4.0-alpha1_linux.64 /usr/local/bin/godot \ - && unzip Godot_v4.0-alpha1_export_templates.tpz \ + && unzip Godot_v4.0-alpha2_linux.64.zip \ + && mv Godot_v4.0-alpha2_linux.64 /usr/local/bin/godot \ + && unzip Godot_v4.0-alpha2_export_templates.tpz \ && mv templates/* ~/.local/share/godot/templates/${GODOT_VERSION}.stable \ - && rm -f Godot_v4.0-alpha1_export_templates.tpz Godot_v4.0-alpha1_linux.64.zip + && rm -f Godot_v4.0-alpha2_export_templates.tpz Godot_v4.0-alpha2_linux.64.zip