Restructure dependencies / image building #104
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Description
Updates pctasks' packaging to facilitate easier image building for downstream tasks. Currently, building a Docker image for a dataset requires copy-pasting the "base" dockerfile around, which is cumbersome.
A possible alternative was to have the dataset Dockerfile use a
FROM pctasks-baseto add its additional dependencies. But this would require multiplepipsolves / installs, which can be challenging to ensure you end up with a consistent, valid environment. It's best to do that all at once if possible.So this adds a new
scripts/generate-requirementsthat usespip-compileto find all the requirements.To help avoid breaking the cache too many times, we split that output into dependencies and
pctasksmodules.Now our dataset tasks just need to build an image using the same definition. See https://github.com/microsoft/planetary-computer-tasks/compare/tom/fix/packaging-dev?expand=1#diff-49a5b2bd27cc6579e5bc27e44e1b033d8239d83131d28ce42b89a3d26013974aR29
How Has This Been Tested?
Please describe the tests that you ran to verify your changes. Provide instructions so we can reproduce. Please also list any relevant details for your test configuration
Checklist:
Please delete options that are not relevant.