mirror of
https://github.com/godotengine/build-containers.git
synced 2025-12-31 21:48:41 +03:00
21 lines
574 B
Docker
21 lines
574 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 OSX_SDKV=
|
|
ENV IOS_SDKV=
|
|
ENV TVOS_SDKV=
|
|
ENV VISIONOS_SDKV=
|
|
|
|
COPY extract_xcode_sdks.sh /root/extract_xcode_sdks.sh
|
|
RUN chmod +x /root/extract_xcode_sdks.sh
|
|
|
|
CMD /root/extract_xcode_sdks.sh
|