compilation 4.2 beta 2

This commit is contained in:
deed 2023-10-23 17:37:15 +02:00
parent 4de5559861
commit c58cd3be8f

View file

@ -30,15 +30,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
libfontconfig1-dev \
&& rm -rf /var/lib/apt/lists/*
ENV GODOT_VERSION="4.2-dev5"
ENV GODOT_VERSION="4.2-beta2"
RUN wget https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_linux.x86_64.zip \
&& wget https://github.com/godotengine/godot-builds/releases/download/${GODOT_VERSION}/Godot_v${GODOT_VERSION}_export_templates.tpz \
&& mkdir -p ~/.cache \
&& mkdir -p ~/.config/godot \
&& mkdir -p ~/.local/share/godot/export_templates/4.2.dev5 \
&& mkdir -p ~/.local/share/godot/export_templates/4.2.beta2 \
&& unzip Godot_v${GODOT_VERSION}_linux.x86_64.zip \
&& mv Godot_v${GODOT_VERSION}_linux.x86_64 /usr/local/bin/godot \
&& unzip Godot_v${GODOT_VERSION}_export_templates.tpz \
&& mv templates/* ~/.local/share/godot/export_templates/4.2.dev5 \
&& mv templates/* ~/.local/share/godot/export_templates/4.2.beta2 \
&& rm -f Godot_v${GODOT_VERSION}_linux.x86_64.zip Godot_v${GODOT_VERSION}_export_templates.tpz