calm-window-49831
10/21/2024, 4:12 PMpython_sources(
name="transaction_data",
skip_mypy=True,
)
pex_binary(name="bin", entry_point="__main__.py")
My Dockerfile is in root/docker/transaction_data, along with a BUILD file. Here is the BUILD file:
docker_image(
name="transaction_data",
)
And here is the Dockerfile:
FROM python:3.11
ENTRYPOINT ["/bin/main.pex"]
COPY src.python.transaction_data/bin.pex /bin
When I run pants package, the build starts but just hangs indefinitely. Any ideas here would be helpful.better-van-82973
10/21/2024, 4:27 PMpants -ldebug package <target>
? That should get you additional debug logs and may help triangulate the source of the problemcalm-window-49831
10/21/2024, 6:31 PM