Skip to content

Commit

Permalink
[ci] Move pip dependencies to docker image
Browse files Browse the repository at this point in the history
Following on from apache#10246, this moves the `pip install`-at-runtime deps to the docker image install so they are baked in.

commit-id:5fe5152b
  • Loading branch information
driazati committed Mar 4, 2022
1 parent 8fe75fd commit c04349d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/install/ubuntu_install_core.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ set -o pipefail
apt-get update && apt-get install -y --no-install-recommends \
git make google-mock libgtest-dev cmake wget unzip libtinfo-dev libz-dev \
libcurl4-openssl-dev libssl-dev libopenblas-dev g++ sudo \
apt-transport-https graphviz pkg-config curl
apt-transport-https graphviz pkg-config curl ninja-build parallel

if [[ -d /usr/src/googletest ]]; then
# Single package source (Ubuntu 18.04)
Expand Down
2 changes: 2 additions & 0 deletions docker/install/ubuntu_install_python_package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,12 @@ pip3 install \
packaging \
Pillow \
pytest \
tlcpack-sphinx-addon==0.2.1 \
pytest-profiling \
pytest-xdist \
requests \
scipy \
synr==0.6.0 \
junitparser==2.4.2 \
six \
tornado

0 comments on commit c04349d

Please sign in to comment.