Skip to content

Commit b06cda8

Browse files
seanpmorganfacaiy
authored andcommitted
CLN: docker build since update (#431)
* Remove unnecessary installs that now exist in Dockerfile * Update doc
1 parent cada1c9 commit b06cda8

File tree

3 files changed

+0
-9
lines changed

3 files changed

+0
-9
lines changed

CONTRIBUTING.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ or run manually:
7777

7878
```bash
7979
docker run --rm -it -v ${PWD}:/addons -w /addons tensorflow/tensorflow:custom-op-ubuntu16 /bin/bash
80-
pip install --upgrade pip # Pip must be upgraded to install manylinux2010 pkg
8180
./configure.sh # Links project with TensorFlow dependency
8281

8382
bazel test -c opt -k \
@@ -95,7 +94,6 @@ or run manually:
9594

9695
```bash
9796
docker run --runtime=nvidia --rm -it -v ${PWD}:/addons -w /addons tensorflow/tensorflow:custom-op-gpu-ubuntu16 /bin/bash
98-
pip install --upgrade pip # Pip must be upgraded to install manylinux2010 pkg
9997
./configure.sh # Links project with TensorFlow dependency
10098

10199
bazel test -c opt -k \

tools/ci_build/builds/wheel_verify.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ set -e
1919
if [[ $(uname) == "Darwin" ]]; then
2020
CMD="delocate-wheel -w wheelhouse"
2121
else
22-
apt-get -y -qq update && apt-get -y -qq install patchelf
23-
pip3 install auditwheel
2422
LD_PATH="$(cat .bazelrc | grep TF_SHARED_LIBRARY_DIR | sed 's/"//g' | awk -F'=' '{print $2}')"
2523
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$LD_PATH
2624
CMD="auditwheel repair --plat manylinux2010_x86_64"

tools/ci_build/install/install_ci_dependency.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,6 @@ if [[ ! -d "tensorflow_addons" ]]; then
3636
exit 1
3737
fi
3838

39-
# Download buildifier.
40-
wget https://github.com/bazelbuild/buildtools/releases/download/0.4.5/buildifier
41-
chmod +x buildifier
42-
sudo mv buildifier /usr/local/bin/.
43-
4439
# Install python dependencies:
4540
CI_REQUIREMENT="$SCRIPT_DIR/ci_requirements.txt"
4641
pip install ${QUIET_FLAG} -r ${CI_REQUIREMENT}

0 commit comments

Comments
 (0)