Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add pipdeptree to In-Dockerfile Dependency Generation #44

Merged
merged 23 commits into from
Oct 13, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
use pip3 install --target=. pipdeptree
  • Loading branch information
ric-evans committed Oct 13, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 2a7bb86d4c7978d95f1c3c7c4e4699e618c69214
2 changes: 1 addition & 1 deletion build-dependencies-dockerfile-logs.sh
Original file line number Diff line number Diff line change
@@ -32,7 +32,7 @@ TEMPDIR="dep-build-$(basename $1)"
mkdir ./$TEMPDIR
echo "#!/bin/bash" >> ./$TEMPDIR/make_pipdeptree.sh
# https://stackoverflow.com/a/62151306/13156561
echo "pip3 install -e pipdeptree" >> ./$TEMPDIR/make_pipdeptree.sh
echo "pip3 install --target=. pipdeptree" >> ./$TEMPDIR/make_pipdeptree.sh
echo "pipdeptree > /local/$TEMPDIR/$DOCKER_DEPS" >> ./$TEMPDIR/make_pipdeptree.sh
# echo "\`python3 -m site --user-base\`/bin/pipdeptree > /local/$TEMPDIR/$DOCKER_DEPS" >> ./$TEMPDIR/make_pipdeptree.sh
chmod +x ./$TEMPDIR/make_pipdeptree.sh