<#22044 Support Building scie pex'es> Issue create...
# github-notifications
c
#22044 Support Building scie pex'es Issue created by rhuanbarreto Is your feature request related to a problem? Please describe. I want to create a scie pex by using the following rule in the BUILD file:
Copy code
pex_binary(
    name="bin-compiled",
    entry_point="__init__.py",
    environment="docker_linux",
    extra_build_args=[
        "--scie=eager",
        "--scie-only"
        "--scie-python-version=3.11.11",
        "--scie-platform=linux-x86_64",
        "--scie-pbs-stripped",
    ],
    execution_mode="venv",
)
But when I run
pants package target:bin-compiled
nothing goes to the dist folder. If I remove
--scie-only
, then I have one pex as output, but it's not scie. Describe the solution you'd like I wanted to have pex_binary target to be able to output in scie format. This would help a lot on having slim and dependency free docker images for my applications. Describe alternatives you've considered For now there's no alternative. I need to keep using zipapp pexes. pantsbuild/pants