mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
- Fedora 43 - SCons 4.10.1 - MinGW 13.0.0 with GCC 15.2.1 and binutils 2.45 - Emscripten 4.0.20 - Xcode 26.1.1
15 lines
437 B
Docker
15 lines
437 B
Docker
ARG img_version
|
|
FROM godot-fedora:${img_version}
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False \
|
|
clang xar xar-devel xz-devel cpio && \
|
|
git clone --progress https://github.com/nrosenstein-stuff/pbzx && \
|
|
cd pbzx && \
|
|
git checkout bf536e167f2e514866f91d7baa0df1dff5a13711 && \
|
|
clang -O3 -llzma -lxar -I /usr/local/include pbzx.c -o pbzx
|
|
|
|
ENV XCODE_SDKV=
|
|
ENV APPLE_SDKV=
|
|
|
|
CMD /root/files/extract_xcode_sdks.sh
|