Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.20 KB | None | 0 0
  1. snowflake@snowflake-comp:~/Przetwarzanie_jezyka_naturalnego/wsd-nlp$ sudo docker build -t wosedon-ubuntu -f Dockerfile-ubuntu .
  2. Sending build context to Docker daemon  879.1MB
  3. Step 1/30 : FROM ubuntu as python-ubuntu
  4.  ---> 2a4cca5ac898
  5. Step 2/30 : WORKDIR /home/user/
  6.  ---> Using cache
  7.  ---> f637806b0235
  8. Step 3/30 : RUN apt-get update && apt-get -y install python python-setuptools python-pip
  9.  ---> Using cache
  10.  ---> 639385f745e7
  11. Step 4/30 : FROM python-ubuntu as corpus2-ubuntu
  12.  ---> 639385f745e7
  13. Step 5/30 : RUN apt-get -y install libboost-all-dev libicu-dev libxml++2.6-dev bison flex libloki-dev git swig cmake && git clone http://nlp.pwr.wroc.pl/corpus2.git && mkdir corpus2/build && cd corpus2/build && cmake .. && make -j7 && make install && ldconfig
  14.  ---> Using cache
  15.  ---> cd3cc7ab76b8
  16. Step 6/30 : FROM corpus2-ubuntu as graph-tool-ubuntu
  17.  ---> cd3cc7ab76b8
  18. Step 7/30 : RUN echo deb http://downloads.skewed.de/apt/xenial xenial universe >>/etc/apt/sources.list && echo deb-src http://downloads.skewed.de/apt/xenial xenial universe >>/etc/apt/sources.list && apt-key adv --keyserver pgp.skewed.de --recv-key 612DEFB798507F25 && apt-get update && apt-get -y install python-graph-tool
  19.  ---> Using cache
  20.  ---> 8f9e21bcd5cf
  21. Step 8/30 : FROM graph-tool-ubuntu as matplotlib-ubuntu
  22.  ---> 8f9e21bcd5cf
  23. Step 9/30 : ADD ./wosedon /home/user/wosedon
  24.  ---> Using cache
  25.  ---> e2c788d710fd
  26. Step 10/30 : ADD ./build-wosedon.sh /home/user/build-wosedon.sh
  27.  ---> Using cache
  28.  ---> 289e78db0d45
  29. Step 11/30 : RUN chmod 766 ./build-wosedon.sh && ./build-wosedon.sh
  30.  ---> Using cache
  31.  ---> c478b2db39c7
  32. Step 12/30 : ENV LD_LIBRARY_PATH="/usr/local/lib:${LD_LIBRARY_PATH}"
  33.  ---> Using cache
  34.  ---> 248481e2af93
  35. Step 13/30 : ENV PYTHONPATH="${PYTHONPATH}:/usr/local/lib/python2.7/site-packages/"
  36.  ---> Using cache
  37.  ---> 202ca04f4f1e
  38. Step 14/30 : FROM matplotlib-ubuntu as wosedon-config-update
  39.  ---> 202ca04f4f1e
  40. Step 15/30 : ADD ./wcrft2.py /home/user/wcrft2.py
  41.  ---> Using cache
  42.  ---> acf2bc7af997
  43. Step 16/30 : RUN chmod +x /home/user/wcrft2.py
  44.  ---> Using cache
  45.  ---> efee7c695239
  46. Step 17/30 : ADD ./zdanie.ccl /home/user/zdanie.ccl
  47.  ---> Using cache
  48.  ---> b54cbae82f9f
  49. Step 18/30 : ADD ./t1.ccl /home/user/t1.ccl
  50.  ---> Using cache
  51.  ---> 317521735b50
  52. Step 19/30 : ADD ./t2.ccl /home/user/t2.ccl
  53.  ---> Using cache
  54.  ---> f0259296139e
  55. Step 20/30 : ADD ./runWosedon.sh /home/user/runWosedon.sh
  56.  ---> Using cache
  57.  ---> 46e820a3b49e
  58. Step 21/30 : RUN chmod +x /home/user/runWosedon.sh
  59.  ---> Using cache
  60.  ---> 9dbe075917b3
  61. Step 22/30 : ADD ./runTests.sh /home/user/runTests.sh
  62.  ---> Using cache
  63.  ---> 9b06ac3b5c9b
  64. Step 23/30 : RUN chmod +x /home/user/runTests.sh
  65.  ---> Using cache
  66.  ---> f40f55936593
  67. Step 24/30 : ADD ./output /home/user/output
  68.  ---> Using cache
  69.  ---> 0987d42dc7ae
  70. Step 25/30 : RUN apt-get -y install python-mysqldb vim
  71.  ---> Using cache
  72.  ---> 102d20588520
  73. Step 26/30 : ADD ./npsemrel /home/user/npsemrel
  74.  ---> Using cache
  75.  ---> c08b3a8c82f9
  76. Step 27/30 : WORKDIR /home/user/npsemrel
  77.  ---> Using cache
  78.  ---> f5232c64c4cf
  79. Step 28/30 : RUN ./setup.py install
  80.  ---> Running in 9016a68b97a3
  81. /bin/sh: 1: ./setup.py: Permission denied
  82. The command '/bin/sh -c ./setup.py install' returned a non-zero code: 126
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement