Skip to content
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: panda-re/panda
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 91d45aa7b6aac2e21af4a88c04ca249867df3f4e
Choose a base ref
..
head repository: panda-re/panda
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1dc116cbbbab78f66a11ead2cc43370c0792e890
Choose a head ref
Showing with 1 addition and 1 deletion.
  1. +1 −1 panda/debian/setup.sh
2 changes: 1 addition & 1 deletion panda/debian/setup.sh
Original file line number Diff line number Diff line change
@@ -63,7 +63,7 @@ DOCKER_BUILDKIT=1 docker build --target installer -t panda_installer --build-arg

# Copy wheel file out of container to host
# This also preserves wheel name, which is important as pip install WILL fail if you arbitarily change the generated wheel file name
docker run --rm -v $(pwd):/out panda bash -c "cp /panda/panda/python/core/dist/*.whl /out"
docker run --rm -v $(pwd):/out panda_installer bash -c "cp /panda/panda/python/core/dist/*.whl /out"

# Finish building main panda container for the target ubuntu version
DOCKER_BUILDKIT=1 docker build --cache-from panda_installer --target panda -t panda --build-arg BASE_IMAGE="ubuntu:${version}" ../..