mirror of
https://github.com/Relintai/broken_seals_2d.git
synced 2024-11-08 05:32:10 +01:00
16 lines
577 B
Docker
16 lines
577 B
Docker
ARG img_version
|
|
FROM godot-fedora:${img_version}
|
|
|
|
RUN dnf -y install --setopt=install_weak_deps=False \
|
|
automake autoconf bzip2-devel clang libicu-devel libtool libxml2-devel llvm-devel openssl-devel yasm && \
|
|
git clone --progress https://github.com/tpoechtrager/osxcross.git && \
|
|
cd /root/osxcross && \
|
|
git checkout 542acc2ef6c21aeb3f109c03748b1015a71fed63 && \
|
|
ln -s /root/files/MacOSX10.14.sdk.tar.xz /root/osxcross/tarballs && \
|
|
UNATTENDED=1 ./build.sh
|
|
|
|
ENV OSXCROSS_ROOT=/root/osxcross
|
|
ENV PATH="/root/osxcross/target/bin:${PATH}"
|
|
|
|
CMD /bin/bash
|