azai91 closed pull request #12569: install docker in ubuntu_base_cpu/gpu
dockerfile
URL: https://github.com/apache/incubator-mxnet/pull/12569
This is a PR merged from a forked repository.
As GitHub hides the original diff on merge, it is displayed below for
the sake of provenance:
As this is a foreign pull request (from a fork), the diff is supplied
below (as it won't show otherwise due to GitHub magic):
diff --git a/ci/docker/Dockerfile.build.ubuntu_base_cpu
b/ci/docker/Dockerfile.build.ubuntu_base_cpu
index c3ad2e90fb8..c9e5ac8b520 100755
--- a/ci/docker/Dockerfile.build.ubuntu_base_cpu
+++ b/ci/docker/Dockerfile.build.ubuntu_base_cpu
@@ -25,6 +25,12 @@ WORKDIR /work/deps
RUN apt-get update && apt-get -y install sudo
+COPY install/ubuntu_core.sh /work/
+RUN /work/ubuntu_core.sh
+
+COPY install/ubuntu_python.sh /work/
+RUN /work/ubuntu_python.sh
+
ARG USER_ID=0
ARG GROUP_ID=0
COPY install/ubuntu_adduser.sh /work/
diff --git a/ci/docker/Dockerfile.build.ubuntu_base_gpu
b/ci/docker/Dockerfile.build.ubuntu_base_gpu
index 99b79f513be..536ded71082 100755
--- a/ci/docker/Dockerfile.build.ubuntu_base_gpu
+++ b/ci/docker/Dockerfile.build.ubuntu_base_gpu
@@ -25,6 +25,12 @@ WORKDIR /work/deps
RUN apt-get update && apt-get -y install sudo
+COPY install/ubuntu_core.sh /work/
+RUN /work/ubuntu_core.sh
+
+COPY install/ubuntu_python.sh /work/
+RUN /work/ubuntu_python.sh
+
ARG USER_ID=0
ARG GROUP_ID=0
COPY install/ubuntu_adduser.sh /work/
diff --git a/tests/nightly/Jenkinsfile b/tests/nightly/Jenkinsfile
index 35996fbcd32..45ead7beaa9 100755
--- a/tests/nightly/Jenkinsfile
+++ b/tests/nightly/Jenkinsfile
@@ -45,7 +45,7 @@ core_logic: {
//Some install guide tests are currently diabled and tracked here:
//1. https://github.com/apache/incubator-mxnet/issues/11369
//2. https://github.com/apache/incubator-mxnet/issues/11288
- utils.docker_run('ubuntu_base_cpu', 'nightly_test_installation
ubuntu_python_cpu_virtualenv', false)
+ utils.docker_run('ubuntu_base_cpu', 'nightly_test_installation',
false)
//docker_run('ubuntu_base_cpu', 'nightly_test_installation
ubuntu_python_cpu_pip', false)
//docker_run('ubuntu_base_cpu', 'nightly_test_installation
ubuntu_python_cpu_docker', false)
//docker_run('ubuntu_base_cpu', 'nightly_test_installation
ubuntu_python_cpu_source', false)
@@ -59,7 +59,7 @@ core_logic: {
//Some install guide tests are currently diabled and tracked here:
//1. https://github.com/apache/incubator-mxnet/issues/11369
//2. https://github.com/apache/incubator-mxnet/issues/11288
- utils.docker_run('ubuntu_base_gpu', 'nightly_test_installation
ubuntu_python_gpu_virtualenv', true)
+ utils.docker_run('ubuntu_base_gpu', 'nightly_test_installation',
true)
//docker_run('ubuntu_base_gpu', 'nightly_test_installation
ubuntu_python_gpu_pip', true)
//docker_run('ubuntu_base_gpu', 'nightly_test_installation
ubuntu_python_gpu_docker', true)
utils.docker_run('ubuntu_base_gpu', 'nightly_test_installation
ubuntu_python_gpu_source', true)
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services