This is an automated email from the ASF dual-hosted git repository. marcoabreu pushed a commit to branch devel-arm in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git
commit f4e080a3c3da05190fd75855df8280ff623c36f9 Author: Anton Chernov <[email protected]> AuthorDate: Tue May 29 09:31:54 2018 +0200 Removed deprecated apt lists removal --- ci/docker/Dockerfile.build.arm64 | 4 +--- ci/docker/Dockerfile.build.armv6 | 4 +--- ci/docker/Dockerfile.build.armv7 | 4 +--- ci/docker/Dockerfile.build.jetson | 4 +--- 4 files changed, 4 insertions(+), 12 deletions(-) diff --git a/ci/docker/Dockerfile.build.arm64 b/ci/docker/Dockerfile.build.arm64 index 2b46e66..eeb4656 100755 --- a/ci/docker/Dockerfile.build.arm64 +++ b/ci/docker/Dockerfile.build.arm64 @@ -27,9 +27,7 @@ ENV FC /usr/bin/${CROSS_TRIPLE}-gfortran ENV HOSTCC gcc ENV TARGET ARMV8 -RUN apt-get update && \ - apt-get install -y unzip && \ - rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y unzip WORKDIR /work diff --git a/ci/docker/Dockerfile.build.armv6 b/ci/docker/Dockerfile.build.armv6 index 42ac214..53113d0 100755 --- a/ci/docker/Dockerfile.build.armv6 +++ b/ci/docker/Dockerfile.build.armv6 @@ -25,9 +25,7 @@ ENV FC=/usr/bin/${CROSS_TRIPLE}-gfortran ENV HOSTCC gcc ENV TARGET ARMV6 -RUN apt-get update && \ - apt-get install -y unzip && \ - rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y unzip WORKDIR /work/deps diff --git a/ci/docker/Dockerfile.build.armv7 b/ci/docker/Dockerfile.build.armv7 index 0ba4025..04c0892 100755 --- a/ci/docker/Dockerfile.build.armv7 +++ b/ci/docker/Dockerfile.build.armv7 @@ -25,9 +25,7 @@ ENV HOSTCC gcc ENV TARGET ARMV7 ENV FC /usr/bin/${CROSS_TRIPLE}-gfortran -RUN apt-get update && \ - apt-get install -y unzip && \ - rm -rf /var/lib/apt/lists/* +RUN apt update && apt install -y unzip WORKDIR /work/deps diff --git a/ci/docker/Dockerfile.build.jetson b/ci/docker/Dockerfile.build.jetson index affe4a9..b79c192 100755 --- a/ci/docker/Dockerfile.build.jetson +++ b/ci/docker/Dockerfile.build.jetson @@ -31,9 +31,7 @@ ENV FC /usr/bin/${CROSS_TRIPLE}-gfortran ENV HOSTCC gcc ENV TARGET ARMV8 -RUN apt-get update && \ - apt-get install -y unzip && \ - rm -rf /var/lib/apt/lists/* +RUN apt update && apt-get install -y unzip WORKDIR /work -- To stop receiving notification emails like this one, please contact [email protected].
