This repository was archived by the owner on Aug 30, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ FROM registry.fedoraproject.org/fedora-minimal:latest
7171WORKDIR /
7272COPY --from=build /usr/lib/osxcross /usr/lib/osxcross
7373COPY --from=build /usr/local/bin/dmg /usr/bin
74- # Copy Entrypoint
7574COPY macports-configure.sh /usr/bin
7675
7776LABEL org.opencontainers.image.authors "Naev Dev Team"
@@ -111,3 +110,6 @@ RUN microdnf --nodocs --setopt=install_weak_deps=0 -y install clang cmake gettex
111110# Set WORKDIR when you spin up the image.
112111 mkdir -p /tmp/naevBuild
113112WORKDIR /tmp/naevBuild
113+
114+ ENTRYPOINT [ "/usr/bin/macports-configure.sh" ]
115+ CMD [ "/bin/bash" ]
Original file line number Diff line number Diff line change 1- #! /usr/ bin/env bash
1+ #! /bin/sh
22
33# Set HOST and MACOSX_DEPLOYMENT_TARGET depending on which BUILD_ARCH is selected.
44# Also configure the macports directory for the right libraries since we build for two different targets.
2222 rm -f /usr/lib/osxcross/macports
2323 ln -s /usr/lib/osxcross/macports.x86_64 /usr/lib/osxcross/macports
2424fi
25+
26+ exec " $@ "
You can’t perform that action at this time.
0 commit comments