I've been working to make the Docker image work Redot and Came across a tutorial for the Godot and tried to create a docker image myself for Redot, but I cannot find template for the Redot-exports online like the godot has for example as in The Code for the docker file this project is forked from
this should be the link https://downloads.tuxfamily.org/godotengine/4.0/Godot_v4.0-stable_export_templates.tpz But it doesn't work. nor do I have solution for Redot myself. Can't get this part to work if someone has idea or wants to contribute for it let me know. I have no clue what to do next. This step is where we define the Redot to be able to automatically export when comited on the repo for the GameDev.
`
Get Godot export templates.
RUN wget -q https://downloads.tuxfamily.org/godotengine/${GODOT_VERSION}${SUBDIR}/Godot_v${GODOT_VERSION}-${RELEASE_NAME}_export_templates.tpz \
&& mkdir -p ~/.local/share/godot/export_templates/${GODOT_VERSION}.${RELEASE_NAME} \
&& ln -s ~/.local/share/godot/templates ~/.local/share/godot/export_templates \
&& unzip -q Godot_v${GODOT_VERSION}-${RELEASE_NAME}_export_templates.tpz \
&& mv templates/* ~/.local/share/godot/export_templates/${GODOT_VERSION}.${RELEASE_NAME} \
&& rm -f Godot_v${GODOT_VERSION}-${RELEASE_NAME}_export_templates.tpz
`
My Implementation So far