I've not been using `pex` files a whole lot.. and ...
# general
c
I've not been using
pex
files a whole lot.. and are in the process of consolidating our internal infra platform consisting of dozens of Python repos into a monorepo, where I figured it would be handy to use them as a means of getting the application code into Docker images. ๐Ÿงต
โœ… 2
The issue being, it doesn't seem to work when the application code is using a
python_distribution
as that codes seems to be pulled in as sources rather than installed into the pex as a regular distribution.
I've not found a way around this, yet, will proceed with a repro case unless there's an obvious answer I've overlooked.. ๐Ÿ˜ฌ
Ah.. except I just did. Noticed I pulled in the application code into the pex as a dist, rather than just depending on the sources directly, so the dist came with requirements that where unsatisfied, but pulling in the sources directly, we skipped those requirements and everything should be fine.
(needed a lunch break to get my head back on.. ๐Ÿ˜› )
โค๏ธ 1