py-setuptools

Details
Source
FROM scratch AS build
ARG VERSION
COPY --from=stagex/core-busybox . /
COPY --from=stagex/core-musl . /
COPY --from=stagex/core-python . /
COPY --from=stagex/core-zlib . /
ADD fetch/py-setuptools-${VERSION}.tar.gz .
WORKDIR /setuptools-${VERSION}
RUN --network=none <<-EOF
	python setup.py build
	python setup.py install --root=/rootfs
EOF
FROM stagex/core-filesystem AS package
COPY --from=build /rootfs/ /