ROODAY

Jupyter Notebook Debug Docker Build Console Output

Apr 7th, 2016
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 22.15 KB | None | 0 0
  1. Sending build context to Docker daemon 8.521 MB
  2. Step 1 : FROM jupyter/ubuntu_14_04_locale_fix
  3.  ---> b3283fdbb8ba
  4. Step 2 : MAINTAINER Project Jupyter <jupyter@googlegroups.com>
  5.  ---> Using cache
  6.  ---> 81cdc3d99e8d
  7. Step 3 : ENV LANGUAGE en_US.UTF-8
  8.  ---> Using cache
  9.  ---> 650fa26e806f
  10. Step 4 : ENV LANG en_US.UTF-8
  11.  ---> Using cache
  12.  ---> 229f0b55b037
  13. Step 5 : ENV LC_ALL en_US.UTF-8
  14.  ---> Using cache
  15.  ---> ccf3f327044f
  16. Step 6 : ENV PYTHONIOENCODING UTF-8
  17.  ---> Using cache
  18.  ---> 065d1dfd7cc2
  19. Step 7 : RUN DEBIAN_FRONTEND=noninteractive apt-get remove -yq         python3-minimal         python3.4         python3.4-minimal         libpython3-stdlib         libpython3.4-stdlib         libpython3.4-minimal
  20.  ---> Using cache
  21.  ---> ee7b4c69a924
  22. Step 8 : RUN apt-get update -qq &&     DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends         build-essential         ca-certificates         curl         git         language-pack-en         libcurl4-openssl-dev         libffi-dev         libsqlite3-dev         libzmq3-dev         pandoc         python         python3         python-dev         python3-dev         sqlite3         texlive-fonts-recommended         texlive-latex-base         texlive-latex-extra         zlib1g-dev &&     apt-get clean &&     rm -rf /var/lib/apt/lists/*
  23.  ---> Using cache
  24.  ---> 24f00e604745
  25. Step 9 : RUN curl -L https://github.com/krallin/tini/releases/download/v0.6.0/tini > tini &&     echo "d5ed732199c36a1189320e6c4859f0169e950692f451c03e7854243b95f4234b *tini" | sha256sum -c - &&     mv tini /usr/local/bin/tini &&     chmod +x /usr/local/bin/tini
  26.  ---> Using cache
  27.  ---> 07a5d50ab9b9
  28. Step 10 : RUN curl -O https://bootstrap.pypa.io/get-pip.py &&     python2 get-pip.py &&     python3 get-pip.py &&     rm get-pip.py &&     pip2 --no-cache-dir install requests[security] &&     pip3 --no-cache-dir install requests[security] &&     rm -rf /root/.cache
  29.  ---> Using cache
  30.  ---> 9af012eb8a52
  31. Step 11 : RUN pip2 --no-cache-dir install ipykernel &&     pip3 --no-cache-dir install ipykernel &&         python2 -m ipykernel.kernelspec &&     python3 -m ipykernel.kernelspec &&     rm -rf /root/.cache
  32.  ---> Using cache
  33.  ---> 1846c5aee7d3
  34. Step 12 : ADD . /usr/src/jupyter-notebook
  35.  ---> Using cache
  36.  ---> 51d2d10b4ce3
  37. Step 13 : RUN BUILD_DEPS="nodejs-legacy npm"'/usr/src/jupyter-notebook' is not installable. File 'setup.py' not found.
  38. The command '/bin/sh -c BUILD_DEPS="nodejs-legacy npm" &&     apt-get update -qq &&     DEBIAN_FRONTEND=noninteractive apt-get install -yq $BUILD_DEPS &&         pip3 install --no-cache-dir /usr/src/jupyter-notebook &&     pip2 install --no-cache-dir widgetsnbextension &&     pip3 install --no-cache-dir widgetsnbextension &&         npm cache clean &&     apt-get clean &&     rm -rf /root/.npm &&     rm -rf /root/.cache &&     rm -rf /root/.config &&     rm -rf /root/.local &&     rm -rf /root/tmp &&     rm -rf /var/lib/apt/lists/* &&     apt-get purge -y --auto-remove         -o APT::AutoRemove::RecommendsImportant=false -o APT::AutoRemove::SuggestsImportant=false $BUILD_DEPS' returned a non-zero code: 1
Add Comment
Please, Sign In to add comment