@@ -2,31 +2,33 @@ ARG img_version
2
2
FROM godot-fedora:${img_version}
3
3
4
4
ENV GODOT_SDK_LINUX_X86_64=/root/x86_64-godot-linux-gnu_sdk-buildroot
5
- ENV GODOT_SDK_LINUX_X86=/root/i686-godot-linux-gnu_sdk-buildroot
6
- ENV GODOT_SDK_LINUX_ARMHF=/root/arm-godot-linux-gnueabihf_sdk-buildroot
5
+ ENV GODOT_SDK_LINUX_X86_32=/root/i686-godot-linux-gnu_sdk-buildroot
6
+ ENV GODOT_SDK_LINUX_ARM64=/root/aarch64-godot-linux-gnu_sdk-buildroot
7
+ ENV GODOT_SDK_LINUX_ARM32=/root/arm-godot-linux-gnueabihf_sdk-buildroot
7
8
ENV BASE_PATH=${PATH}
8
9
9
- RUN dnf -y install --setopt=install_weak_deps=False \
10
- libxcrypt-compat yasm && \
11
- curl -LO https://downloads.tuxfamily.org/godotengine/toolchains/linux/2021-02-11/x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
10
+ RUN curl -LO https://downloads.tuxfamily.org/godotengine/toolchains/linux/2023-11-01/x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
12
11
tar xf x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
13
12
rm -f x86_64-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
14
13
cd x86_64-godot-linux-gnu_sdk-buildroot && \
15
14
./relocate-sdk.sh && \
16
- rm -f bin/{aclocal*,auto*,libtool*,m4} && \
17
15
cd /root && \
18
- curl -LO https://downloads.tuxfamily.org/godotengine/toolchains/linux/2021-02-11/arm-godot-linux-gnueabihf_sdk-buildroot.tar.bz2 && \
19
- tar xf arm-godot-linux-gnueabihf_sdk-buildroot.tar.bz2 && \
20
- rm -f arm-godot-linux-gnueabihf_sdk-buildroot.tar.bz2 && \
21
- cd arm-godot-linux-gnueabihf_sdk-buildroot && \
22
- ./relocate-sdk.sh && \
23
- rm -f bin/{aclocal*,auto*,libtool*,m4} && \
24
- cd /root && \
25
- curl -LO https://downloads.tuxfamily.org/godotengine/toolchains/linux/2021-02-11/i686-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
16
+ curl -LO https://downloads.tuxfamily.org/godotengine/toolchains/linux/2023-11-01/i686-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
26
17
tar xf i686-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
27
18
rm -f i686-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
28
19
cd i686-godot-linux-gnu_sdk-buildroot && \
29
20
./relocate-sdk.sh && \
30
- rm -f bin/{aclocal*,auto*,libtool*,m4}
21
+ cd /root && \
22
+ curl -LO https://downloads.tuxfamily.org/godotengine/toolchains/linux/2023-11-01/aarch64-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
23
+ tar xf aarch64-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
24
+ rm -f aarch64-godot-linux-gnu_sdk-buildroot.tar.bz2 && \
25
+ cd aarch64-godot-linux-gnu_sdk-buildroot && \
26
+ ./relocate-sdk.sh && \
27
+ cd /root && \
28
+ curl -LO https://downloads.tuxfamily.org/godotengine/toolchains/linux/2023-11-01/arm-godot-linux-gnueabihf_sdk-buildroot.tar.bz2 && \
29
+ tar xf arm-godot-linux-gnueabihf_sdk-buildroot.tar.bz2 && \
30
+ rm -f arm-godot-linux-gnueabihf_sdk-buildroot.tar.bz2 && \
31
+ cd arm-godot-linux-gnueabihf_sdk-buildroot && \
32
+ ./relocate-sdk.sh
31
33
32
34
CMD /bin/bash
0 commit comments