https://prefect.io logo
b

Brian Mesick

10/30/2020, 8:05 PM
Hi all, another random question. In upgrading my flow from Prefect
0.12.6
to
0.13.3
the container no longer has git installed, causing pip installs from git to fail. We use a shared library that gets pip installed from git, so this makes us sad. I’m not seeing a way to inject a build step to install git, or instructions on how to add one, so I’m a bit stuck at the moment. Has anyone else run into this?
c

Chris White

10/30/2020, 8:21 PM
Hi Brian, the simplest way to achieve this would probably be a custom Dockerfile; you can point
Docker
storage at a Dockerfile location and include the
git
installation in that file on top of your favorite base image
👍 1
b

Brian Mesick

10/30/2020, 8:51 PM
Got it, thanks
2 Views