diff --git a/Dockerfile-zig b/Dockerfile-zig index abc94eb..81b7ca4 100644 --- a/Dockerfile-zig +++ b/Dockerfile-zig @@ -6,11 +6,6 @@ ENV ZIG_VERSION=${ZIG_VERSION} COPY zig/install-dependencies.sh /tmp/install-dependencies.sh RUN chmod +x /tmp/install-dependencies.sh && /tmp/install-dependencies.sh && rm /tmp/install-dependencies.sh -# Install macOS SDKs -RUN curl -L "https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX10.9.sdk.tar.xz" | tar -J -x -C /opt -RUN curl -L "https://github.com/phracker/MacOSX-SDKs/releases/download/11.3/MacOSX11.3.sdk.tar.xz" | tar -J -x -C /opt -ENV SDKROOT=/opt/MacOSX11.3.sdk - # Install Rust targets RUN rustup target add \ x86_64-unknown-linux-gnu \ @@ -19,7 +14,4 @@ RUN rustup target add \ aarch64-unknown-linux-musl \ arm-unknown-linux-gnueabihf \ arm-unknown-linux-musleabihf \ - x86_64-apple-darwin \ - aarch64-apple-darwin \ x86_64-pc-windows-gnu -