Publish a Python Wheel to GCP Artifact Registry with Poetry

1 sergiolema 1 6/9/2025, 7:06:23 AM sergiolema.dev ↗

Comments (1)

sergiolema · 6h ago
Recently, I've been building a project in Python that doesn't have a Docker image as output. Instead, I need a runnable file. Why? Because I need to talk to the machine directly and not to Docker. Because I need to talk to the GPU drivers directly and not to another abstraction layer.

So, I needed to create a runnable file in Python. I needed to create a wheel file. All this with Poetry and integrate it into my CI/CD pipeline.