Advertisement
Guest User

Untitled

a guest
Apr 10th, 2018
204
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 132.14 KB | None | 0 0
  1. deshraj at DESHRAJs-MacBook-Pro in ~/Documents/evalai on master [!?$]
  2. $ docker-compose up --build
  3. Building nodejs
  4. Step 1/21 : FROM node:8.11.1
  5. 8.11.1: Pulling from library/node
  6. f2b6b4884fc8: Pull complete
  7. 4fb899b4df21: Pull complete
  8. 74eaa8be7221: Pull complete
  9. 2d6e98fe4040: Pull complete
  10. 452c06dec5fa: Pull complete
  11. 7b3c215894de: Pull complete
  12. 094529398b79: Pull complete
  13. 449fe646e95b: Pull complete
  14. Digest: sha256:a4c4106ddda19c2c228cbdfbc0f0d7a5f27c383b0486f88fc2c2c40153763cf5
  15. Status: Downloaded newer image for node:8.11.1
  16.  ---> 4635bc7d130c
  17. Step 2/21 : MAINTAINER EvalAI Team <team@cloudcv.org>
  18.  ---> Running in 42bc93586990
  19. Removing intermediate container 42bc93586990
  20.  ---> 3629121c8f20
  21. Step 3/21 : RUN apt-get update -qq && apt-get install -y build-essential git curl libfontconfig
  22.  ---> Running in c1c034c3460c
  23. Reading package lists...
  24. Building dependency tree...
  25. Reading state information...
  26. libfontconfig1 is already the newest version.
  27. libfontconfig1 set to manually installed.
  28. git is already the newest version.
  29. Suggested packages:
  30.   libcurl4-doc libcurl3-dbg libidn11-dev libldap2-dev librtmp-dev
  31.   libssh2-1-dev
  32. The following NEW packages will be installed:
  33.   build-essential
  34. The following packages will be upgraded:
  35.   curl libcurl3 libcurl4-openssl-dev
  36. 3 upgraded, 1 newly installed, 0 to remove and 6 not upgraded.
  37. Need to get 805 kB of archives.
  38. After this operation, 37.9 kB of additional disk space will be used.
  39. Get:1 http://security.debian.org/ jessie/updates/main libcurl4-openssl-dev amd64 7.38.0-4+deb8u10 [337 kB]
  40. Get:2 http://deb.debian.org/debian/ jessie/main build-essential amd64 11.7 [7114 B]
  41. Get:3 http://security.debian.org/ jessie/updates/main curl amd64 7.38.0-4+deb8u10 [201 kB]
  42. Get:4 http://security.debian.org/ jessie/updates/main libcurl3 amd64 7.38.0-4+deb8u10 [260 kB]
  43. debconf: delaying package configuration, since apt-utils is not installed
  44. Fetched 805 kB in 1s (454 kB/s)
  45. (Reading database ... 21671 files and directories currently installed.)
  46. Preparing to unpack .../libcurl4-openssl-dev_7.38.0-4+deb8u10_amd64.deb ...
  47. Unpacking libcurl4-openssl-dev:amd64 (7.38.0-4+deb8u10) over (7.38.0-4+deb8u9) ...
  48. Preparing to unpack .../curl_7.38.0-4+deb8u10_amd64.deb ...
  49. Unpacking curl (7.38.0-4+deb8u10) over (7.38.0-4+deb8u9) ...
  50. Preparing to unpack .../libcurl3_7.38.0-4+deb8u10_amd64.deb ...
  51. Unpacking libcurl3:amd64 (7.38.0-4+deb8u10) over (7.38.0-4+deb8u9) ...
  52. Selecting previously unselected package build-essential.
  53. Preparing to unpack .../build-essential_11.7_amd64.deb ...
  54. Unpacking build-essential (11.7) ...
  55. Setting up libcurl3:amd64 (7.38.0-4+deb8u10) ...
  56. Setting up libcurl4-openssl-dev:amd64 (7.38.0-4+deb8u10) ...
  57. Setting up curl (7.38.0-4+deb8u10) ...
  58. Setting up build-essential (11.7) ...
  59. Processing triggers for libc-bin (2.19-18+deb8u10) ...
  60. Removing intermediate container c1c034c3460c
  61.  ---> 324b6d7747d9
  62. Step 4/21 : RUN apt-get update
  63.  ---> Running in 6cb0ed033be1
  64. Hit http://security.debian.org jessie/updates InRelease
  65. Get:1 http://security.debian.org jessie/updates/main amd64 Packages [644 kB]
  66. Ign http://deb.debian.org jessie InRelease
  67. Hit http://deb.debian.org jessie-updates InRelease
  68. Hit http://deb.debian.org jessie Release.gpg
  69. Hit http://deb.debian.org jessie Release
  70. Get:2 http://deb.debian.org jessie-updates/main amd64 Packages [23.1 kB]
  71. Get:3 http://deb.debian.org jessie/main amd64 Packages [9064 kB]
  72. Fetched 9731 kB in 8s (1103 kB/s)
  73. Reading package lists...
  74. Removing intermediate container 6cb0ed033be1
  75.  ---> 19e37fc95d99
  76. Step 5/21 : RUN mkdir /code
  77.  ---> Running in e538ecf84832
  78. Removing intermediate container e538ecf84832
  79.  ---> 309c39577a13
  80. Step 6/21 : ADD ./package.json /code
  81.  ---> 84287d5734bf
  82. Step 7/21 : ADD ./bower.json /code
  83.  ---> 4481066a9cc8
  84. Step 8/21 : ADD ./gulpfile.js /code
  85.  ---> 7eb2f56a235b
  86. Step 9/21 : ADD ./.eslintrc /code
  87.  ---> 4d1a75b8d435
  88. Step 10/21 : ADD ./karma.conf.js /code
  89.  ---> 5e753d3d92de
  90. Step 11/21 : WORKDIR /code
  91. Removing intermediate container dd574694865e
  92.  ---> cd90f3c65629
  93. Step 12/21 : RUN npm install -g bower gulp
  94.  ---> Running in b5298baf2e0c
  95. npm WARN deprecated gulp-util@3.0.8: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
  96. npm WARN deprecated graceful-fs@3.0.11: please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js
  97. npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
  98. npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
  99. npm WARN deprecated graceful-fs@1.2.3: please upgrade to graceful-fs 4 for compatibility with current and future versions of Node.js
  100. npm WARN deprecated natives@1.1.3: This module relies on Node.js's internals and will break at some point. Do not use it, and update to graceful-fs@4.x.
  101. /usr/local/bin/bower -> /usr/local/lib/node_modules/bower/bin/bower
  102. /usr/local/bin/gulp -> /usr/local/lib/node_modules/gulp/bin/gulp.js
  103. + gulp@3.9.1
  104. + bower@1.8.4
  105. added 256 packages in 14.538s
  106. Removing intermediate container b5298baf2e0c
  107. ---> f58007aa2529
  108. Step 13/21 : RUN npm link gulp
  109. ---> Running in 17a1022b95c3
  110. /code/node_modules/gulp -> /usr/local/lib/node_modules/gulp
  111. Removing intermediate container 17a1022b95c3
  112. ---> ace1c6c63ad4
  113. Step 14/21 : RUN npm cache clean -f
  114. ---> Running in 900c54c336c4
  115. npm WARN using --force I sure hope you know what you are doing.
  116. Removing intermediate container 900c54c336c4
  117. ---> 593515077a9a
  118. Step 15/21 : RUN npm install -g n
  119. ---> Running in e0a963e5df86
  120. /usr/local/bin/n -> /usr/local/lib/node_modules/n/bin/n
  121. + n@2.1.8
  122. added 1 package in 0.676s
  123. Removing intermediate container e0a963e5df86
  124. ---> b5f97e38cd8f
  125. Step 16/21 : RUN n stable
  126. ---> Running in f7e5cc39b657
  127.  
  128.     install : node-v9.10.1
  129.       mkdir : /usr/local/n/versions/node/9.10.1
  130.       fetch : https://nodejs.org/dist/v9.10.1/node-v9.10.1-linux-x64.tar.gz
  131. ######################################################################## 100.0%
  132.   installed : v9.10.1
  133.  
  134. Removing intermediate container f7e5cc39b657
  135. ---> b33ba115035b
  136. Step 17/21 : RUN npm install
  137. ---> Running in b36d461ea1a1
  138. npm WARN deprecated gulp-util@3.0.8: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
  139. npm WARN deprecated gulp-util@2.2.20: gulp-util is deprecated - replace it, following the guidelines at https://medium.com/gulpjs/gulp-util-ca3b1f9f9ac5
  140. npm WARN deprecated nodemailer@2.7.2: All versions below 4.0.1 of Nodemailer are deprecated. See https://nodemailer.com/status/
  141. npm WARN deprecated minimatch@2.0.10: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
  142. npm WARN deprecated mailcomposer@4.0.1: This project is unmaintained
  143. npm WARN deprecated socks@1.1.9: If using 2.x branch, please upgrade to at least 2.1.6 to avoid a serious bug with socket data flow and an import issue introduced in 2.1.0
  144. npm WARN deprecated minimatch@0.2.14: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
  145. npm WARN deprecated minimatch@0.3.0: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
  146. npm WARN deprecated node-uuid@1.4.8: Use uuid module instead
  147. npm WARN deprecated buildmail@4.0.1: This project is unmaintained
  148. npm WARN deprecated socks@1.1.10: If using 2.x branch, please upgrade to at least 2.1.6 to avoid a serious bug with socket data flow and an import issue introduced in 2.1.0
  149.  
  150. > uws@9.14.0 install /code/node_modules/uws
  151. > node-gyp rebuild > build_log.txt 2>&1 || exit 0
  152.  
  153.  
  154. > phantomjs-prebuilt@2.1.16 install /code/node_modules/phantomjs-prebuilt
  155. > node install.js
  156.  
  157. PhantomJS not found on PATH
  158. Downloading https://github.com/Medium/phantomjs/releases/download/v2.1.1/phantomjs-2.1.1-linux-x86_64.tar.bz2
  159. Saving to /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2
  160. Receiving...
  161.  
  162. Received 22866K total.
  163. Extracting tar contents (via spawned process)
  164. Removing /code/node_modules/phantomjs-prebuilt/lib/phantom
  165. Copying extracted folder /tmp/phantomjs/phantomjs-2.1.1-linux-x86_64.tar.bz2-extract-1523376806201/phantomjs-2.1.1-linux-x86_64 -> /code/node_modules/phantomjs-prebuilt/lib/phantom
  166. Writing location.js file
  167. Done. Phantomjs binary available at /code/node_modules/phantomjs-prebuilt/lib/phantom/bin/phantomjs
  168.  
  169. > node-sass@4.8.3 install /code/node_modules/node-sass
  170. > node scripts/install.js
  171.  
  172. Downloading binary from https://github.com/sass/node-sass/releases/download/v4.8.3/linux-x64-59_binding.node
  173. Download complete
  174. Binary saved to /code/node_modules/node-sass/vendor/linux-x64-59/binding.node
  175. Caching binary to /root/.npm/node-sass/4.8.3/linux-x64-59_binding.node
  176.  
  177. > node-sass@4.8.3 postinstall /code/node_modules/node-sass
  178. > node scripts/build.js
  179.  
  180. Binary found at /code/node_modules/node-sass/vendor/linux-x64-59/binding.node
  181. Testing binary
  182. Binary is fine
  183.  
  184. > gifsicle@3.0.4 postinstall /code/node_modules/gifsicle
  185. > node lib/install.js
  186.  
  187.  ✔ gifsicle pre-build test passed successfully
  188.  
  189. > jpegtran-bin@3.2.0 postinstall /code/node_modules/jpegtran-bin
  190. > node lib/install.js
  191.  
  192.  ✔ jpegtran pre-build test passed successfully
  193.  
  194. > optipng-bin@3.1.4 postinstall /code/node_modules/optipng-bin
  195. > node lib/install.js
  196.  
  197.  ✔ optipng pre-build test passed successfully
  198. npm notice created a lockfile as package-lock.json. You should commit this file.
  199. npm WARN evalai@1.0.0 No description
  200. npm WARN optional SKIPPING OPTIONAL DEPENDENCY: fsevents@1.1.3 (node_modules/fsevents):
  201. npm WARN notsup SKIPPING OPTIONAL DEPENDENCY: Unsupported platform for fsevents@1.1.3: wanted {"os":"darwin","arch":"any"} (current: {"os":"linux","arch":"x64"})
  202.  
  203. added 1587 packages in 93.675s
  204. Removing intermediate container b36d461ea1a1
  205. ---> 25e61ca1e0a1
  206. Step 18/21 : RUN bower install --allow-root
  207. ---> Running in eaa75bc5c61f
  208. bower animate.css#^3.5.2    not-cached https://github.com/daneden/animate.css.git#^3.5.2
  209. bower animate.css#^3.5.2       resolve https://github.com/daneden/animate.css.git#^3.5.2
  210. bower font-awesome#^4.7.0   not-cached https://github.com/FortAwesome/Font-Awesome.git#^4.7.0
  211. bower font-awesome#^4.7.0      resolve https://github.com/FortAwesome/Font-Awesome.git#^4.7.0
  212. bower angular-animate#^1.5.8       not-cached https://github.com/angular/bower-angular-animate.git#^1.5.8
  213. bower angular-animate#^1.5.8          resolve https://github.com/angular/bower-angular-animate.git#^1.5.8
  214. bower angular-aria#^1.5.8          not-cached https://github.com/angular/bower-angular-aria.git#^1.5.8
  215. bower angular-aria#^1.5.8             resolve https://github.com/angular/bower-angular-aria.git#^1.5.8
  216. bower angular#^1.5.8               not-cached https://github.com/angular/bower-angular.git#^1.5.8
  217. bower angular#^1.5.8                  resolve https://github.com/angular/bower-angular.git#^1.5.8
  218. bower angular-ui-router#^0.3.1     not-cached https://github.com/angular-ui/angular-ui-router-bower.git#^0.3.1
  219. bower angular-ui-router#^0.3.1        resolve https://github.com/angular-ui/angular-ui-router-bower.git#^0.3.1
  220. bower angular-material#master      not-cached https://github.com/angular/bower-material.git#master
  221. bower angular-material#master         resolve https://github.com/angular/bower-material.git#master
  222. bower AngularJS-Toaster#^2.1.0     not-cached https://github.com/jirikavi/AngularJS-Toaster.git#^2.1.0
  223. bower AngularJS-Toaster#^2.1.0        resolve https://github.com/jirikavi/AngularJS-Toaster.git#^2.1.0
  224. bower angular-messages#^1.5.8      not-cached https://github.com/angular/bower-angular-messages.git#^1.5.8
  225. bower angular-messages#^1.5.8         resolve https://github.com/angular/bower-angular-messages.git#^1.5.8
  226. bower lodash#^4.17.2               not-cached https://github.com/lodash/lodash.git#^4.17.2
  227. bower lodash#^4.17.2                  resolve https://github.com/lodash/lodash.git#^4.17.2
  228. bower moment#^2.21.0               not-cached https://github.com/moment/moment.git#^2.21.0
  229. bower moment#^2.21.0                  resolve https://github.com/moment/moment.git#^2.21.0
  230. bower ngSmoothScroll#master        not-cached https://github.com/d-oliveros/angular-smooth-scroll.git#master
  231. bower ngSmoothScroll#master           resolve https://github.com/d-oliveros/angular-smooth-scroll.git#master
  232. bower angular-trix#^1.0.2          not-cached https://github.com/sachinchoolur/angular-trix.git#^1.0.2
  233. bower angular-trix#^1.0.2             resolve https://github.com/sachinchoolur/angular-trix.git#^1.0.2
  234. bower ng-file-upload#^12.2.13      not-cached https://github.com/danialfarid/angular-file-upload-bower.git#^12.2.13
  235. bower ng-file-upload#^12.2.13         resolve https://github.com/danialfarid/angular-file-upload-bower.git#^12.2.13
  236. bower angular-moment#^1.2.0        not-cached https://github.com/urish/angular-moment.git#^1.2.0
  237. bower angular-moment#^1.2.0           resolve https://github.com/urish/angular-moment.git#^1.2.0
  238. bower jquery#^3.1.1                not-cached https://github.com/jquery/jquery-dist.git#^3.1.1
  239. bower jquery#^3.1.1                   resolve https://github.com/jquery/jquery-dist.git#^3.1.1
  240. bower angular-sanitize#^1.6.1      not-cached https://github.com/angular/bower-angular-sanitize.git#^1.6.1
  241. bower angular-sanitize#^1.6.1         resolve https://github.com/angular/bower-angular-sanitize.git#^1.6.1
  242. bower ng-focus-if#master           not-cached https://github.com/hiebj/ng-focus-if.git#master
  243. bower ng-focus-if#master              resolve https://github.com/hiebj/ng-focus-if.git#master
  244. bower materialize#^0.97.8          not-cached https://github.com/Dogfalo/materialize.git#^0.97.8
  245. bower materialize#^0.97.8             resolve https://github.com/Dogfalo/materialize.git#^0.97.8
  246. bower animate.css#^3.5.2             download https://github.com/daneden/animate.css/archive/3.5.2.tar.gz
  247. bower font-awesome#^4.7.0            download https://github.com/FortAwesome/Font-Awesome/archive/v4.7.0.tar.gz
  248. bower angular-aria#^1.5.8            download https://github.com/angular/bower-angular-aria/archive/v1.6.9.tar.gz
  249. bower angular-animate#^1.5.8         download https://github.com/angular/bower-angular-animate/archive/v1.6.9.tar.gz
  250. bower angular-ui-router#^0.3.1       download https://github.com/angular-ui/angular-ui-router-bower/archive/0.3.2.tar.gz
  251. bower angular#^1.5.8                 download https://github.com/angular/bower-angular/archive/v1.6.9.tar.gz
  252. bower AngularJS-Toaster#^2.1.0       download https://github.com/jirikavi/AngularJS-Toaster/archive/2.2.0.tar.gz
  253. bower angular-material#master        download https://github.com/angular/bower-material/archive/master.tar.gz
  254. bower angular-messages#^1.5.8        download https://github.com/angular/bower-angular-messages/archive/v1.6.9.tar.gz
  255. bower lodash#^4.17.2                 download https://github.com/lodash/lodash/archive/4.17.5.tar.gz
  256. bower moment#^2.21.0                 download https://github.com/moment/moment/archive/2.22.0.tar.gz
  257. bower angular-trix#^1.0.2            download https://github.com/sachinchoolur/angular-trix/archive/1.0.2.tar.gz
  258. bower angular-moment#^1.2.0          download https://github.com/urish/angular-moment/archive/1.2.0.tar.gz
  259. bower ng-file-upload#^12.2.13        download https://github.com/danialfarid/angular-file-upload-bower/archive/12.2.13.tar.gz
  260. bower animate.css#^3.5.2              extract archive.tar.gz
  261. bower angular-aria#^1.5.8             extract archive.tar.gz
  262. bower jquery#^3.1.1                  download https://github.com/jquery/jquery-dist/archive/3.3.1.tar.gz
  263. bower AngularJS-Toaster#^2.1.0        extract archive.tar.gz
  264. bower angular-aria#^1.5.8            resolved https://github.com/angular/bower-angular-aria.git#1.6.9
  265. bower animate.css#^3.5.2             resolved https://github.com/daneden/animate.css.git#3.5.2
  266. bower AngularJS-Toaster#^2.1.0   invalid-meta for:/tmp/457cdadbd23fb56abc0a55804d00eb84/bower/5d4aa755456be7feeb36e8992e5fc812-7-ekpP17/bower.json
  267. bower AngularJS-Toaster#^2.1.0   invalid-meta The "name" is recommended to be lowercase, can contain digits, dots, dashes
  268. bower AngularJS-Toaster#^2.1.0       resolved https://github.com/jirikavi/AngularJS-Toaster.git#2.2.0
  269. bower angular#>1.2.6               not-cached https://github.com/angular/bower-angular.git#>1.2.6
  270. bower angular#>1.2.6                  resolve https://github.com/angular/bower-angular.git#>1.2.6
  271. bower angular-animate#>1.2.8       not-cached https://github.com/angular/bower-angular-animate.git#>1.2.8
  272. bower angular-animate#>1.2.8          resolve https://github.com/angular/bower-angular-animate.git#>1.2.8
  273. bower angular#>1.2.6                 download https://github.com/angular/bower-angular/archive/v1.6.9.tar.gz
  274. bower angular-animate#>1.2.8         download https://github.com/angular/bower-angular-animate/archive/v1.6.9.tar.gz
  275. bower ngSmoothScroll#master          download https://github.com/d-oliveros/angular-smooth-scroll/archive/master.tar.gz
  276. bower ng-focus-if#master             download https://github.com/hiebj/ng-focus-if/archive/master.tar.gz
  277. bower angular-messages#^1.5.8         extract archive.tar.gz
  278. bower angular-messages#^1.5.8        resolved https://github.com/angular/bower-angular-messages.git#1.6.9
  279. bower materialize#^0.97.8            download https://github.com/Dogfalo/materialize/archive/v0.97.8.tar.gz
  280. bower angular-sanitize#^1.6.1        download https://github.com/angular/bower-angular-sanitize/archive/v1.6.9.tar.gz
  281. bower angular-animate#^1.5.8          extract archive.tar.gz
  282. bower angular-animate#^1.5.8         resolved https://github.com/angular/bower-angular-animate.git#1.6.9
  283. bower moment#^2.21.0                  extract archive.tar.gz
  284. bower angular-moment#^1.2.0           extract archive.tar.gz
  285. bower angular-moment#^1.2.0          resolved https://github.com/urish/angular-moment.git#1.2.0
  286. bower angular#>=1.2.0 <1.7.0       not-cached https://github.com/angular/bower-angular.git#>=1.2.0 <1.7.0
  287. bower angular#>=1.2.0 <1.7.0          resolve https://github.com/angular/bower-angular.git#>=1.2.0 <1.7.0
  288. bower angular#>=1.2.0 <1.7.0         download https://github.com/angular/bower-angular/archive/v1.6.9.tar.gz
  289. bower font-awesome#^4.7.0             extract archive.tar.gz
  290. bower ng-focus-if#master              extract archive.tar.gz
  291. bower ng-focus-if#master             resolved https://github.com/hiebj/ng-focus-if.git#803bc0e3e1
  292. bower angular-sanitize#^1.6.1         extract archive.tar.gz
  293. bower angular-sanitize#^1.6.1        resolved https://github.com/angular/bower-angular-sanitize.git#1.6.9
  294. bower angular-trix#^1.0.2             extract archive.tar.gz
  295. bower ngSmoothScroll#master           extract archive.tar.gz
  296. bower ngSmoothScroll#master      invalid-meta for:/tmp/457cdadbd23fb56abc0a55804d00eb84/bower/059628a9da6be4b91205b2790aa8ecc4-7-M9eigj/bower.json
  297. bower ngSmoothScroll#master      invalid-meta The "name" is recommended to be lowercase, can contain digits, dots, dashes
  298. bower ngSmoothScroll#master          resolved https://github.com/d-oliveros/angular-smooth-scroll.git#6ea9ace56e
  299. bower angular-trix#^1.0.2            resolved https://github.com/sachinchoolur/angular-trix.git#1.0.2
  300. bower angular#>=1.2.0              not-cached https://github.com/angular/bower-angular.git#>=1.2.0
  301. bower angular#>=1.2.0                 resolve https://github.com/angular/bower-angular.git#>=1.2.0
  302. bower angular#>=1.2.0                download https://github.com/angular/bower-angular/archive/v1.6.9.tar.gz
  303. bower moment#^2.21.0                 resolved https://github.com/moment/moment.git#2.22.0
  304. bower angular-animate#>1.2.8          extract archive.tar.gz
  305. bower lodash#^4.17.2                  extract archive.tar.gz
  306. bower angular-animate#>1.2.8         resolved https://github.com/angular/bower-angular-animate.git#1.6.9
  307. bower trix#*                       not-cached https://github.com/basecamp/trix.git#*
  308. bower trix#*                          resolve https://github.com/basecamp/trix.git#*
  309. bower angular-material#master         extract archive.tar.gz
  310. bower jquery#^3.1.1                   extract archive.tar.gz
  311. bower lodash#^4.17.2                 resolved https://github.com/lodash/lodash.git#4.17.5
  312. bower ng-file-upload#^12.2.13         extract archive.tar.gz
  313. bower ng-file-upload#^12.2.13        resolved https://github.com/danialfarid/angular-file-upload-bower.git#12.2.13
  314. bower angular#>1.2.0               not-cached https://github.com/angular/bower-angular.git#>1.2.0
  315. bower angular#>1.2.0                  resolve https://github.com/angular/bower-angular.git#>1.2.0
  316. bower angular#>1.2.0                 download https://github.com/angular/bower-angular/archive/v1.6.9.tar.gz
  317. bower angular#^1.5.8                  extract archive.tar.gz
  318. bower trix#*                         download https://github.com/basecamp/trix/archive/0.11.2.tar.gz
  319. bower angular#^1.5.8                 resolved https://github.com/angular/bower-angular.git#1.6.9
  320. bower jquery#^3.1.1                  resolved https://github.com/jquery/jquery-dist.git#3.3.1
  321. bower angular-material#master        resolved https://github.com/angular/bower-material.git#13e70e998c
  322. bower angular#>1.2.6                  extract archive.tar.gz
  323. bower font-awesome#^4.7.0            resolved https://github.com/FortAwesome/Font-Awesome.git#4.7.0
  324. bower angular#>1.2.6                 resolved https://github.com/angular/bower-angular.git#1.6.9
  325. bower angular#>=1.2.0 <1.7.0          extract archive.tar.gz
  326. bower angular#>=1.2.0 <1.7.0         resolved https://github.com/angular/bower-angular.git#1.6.9
  327. bower angular-ui-router#^0.3.1        extract archive.tar.gz
  328. bower angular-ui-router#^0.3.1       resolved https://github.com/angular-ui/angular-ui-router-bower.git#0.3.2
  329. bower trix#*                          extract archive.tar.gz
  330. bower angular#>=1.2.0                 extract archive.tar.gz
  331. bower angular#>=1.2.0                resolved https://github.com/angular/bower-angular.git#1.6.9
  332. bower trix#*                         resolved https://github.com/basecamp/trix.git#0.11.2
  333. bower angular#>1.2.0                  extract archive.tar.gz
  334. bower angular#>1.2.0                 resolved https://github.com/angular/bower-angular.git#1.6.9
  335. bower materialize#^0.97.8            progress received 3.6MB of 21.6MB downloaded, 17%
  336. bower materialize#^0.97.8            progress received 4.2MB of 21.6MB downloaded, 20%
  337. bower materialize#^0.97.8            progress received 4.9MB of 21.6MB downloaded, 22%
  338. bower materialize#^0.97.8            progress received 5.4MB of 21.6MB downloaded, 25%
  339. bower materialize#^0.97.8            progress received 6.0MB of 21.6MB downloaded, 28%
  340. bower materialize#^0.97.8            progress received 7.2MB of 21.6MB downloaded, 33%
  341. bower materialize#^0.97.8            progress received 8.1MB of 21.6MB downloaded, 38%
  342. bower materialize#^0.97.8            progress received 9.1MB of 21.6MB downloaded, 42%
  343. bower materialize#^0.97.8            progress received 10.1MB of 21.6MB downloaded, 47%
  344. bower materialize#^0.97.8            progress received 11.2MB of 21.6MB downloaded, 52%
  345. bower materialize#^0.97.8            progress received 12.3MB of 21.6MB downloaded, 57%
  346. bower materialize#^0.97.8            progress received 13.6MB of 21.6MB downloaded, 63%
  347. bower materialize#^0.97.8            progress received 14.5MB of 21.6MB downloaded, 67%
  348. bower materialize#^0.97.8            progress received 15.3MB of 21.6MB downloaded, 71%
  349. bower materialize#^0.97.8            progress received 16.1MB of 21.6MB downloaded, 75%
  350. bower materialize#^0.97.8            progress received 17.2MB of 21.6MB downloaded, 79%
  351. bower materialize#^0.97.8            progress received 18.2MB of 21.6MB downloaded, 84%
  352. bower materialize#^0.97.8            progress received 19.4MB of 21.6MB downloaded, 90%
  353. bower materialize#^0.97.8            progress received 20.7MB of 21.6MB downloaded, 96%
  354. bower materialize#^0.97.8             extract archive.tar.gz
  355. bower materialize#^0.97.8            resolved https://github.com/Dogfalo/materialize.git#0.97.8
  356. bower angular                extra-resolution Unnecessary resolution: angular#^1.6.1
  357. bower angular-aria#^1.5.8             install angular-aria#1.6.9
  358. bower animate.css#^3.5.2              install animate.css#3.5.2
  359. bower AngularJS-Toaster#^2.1.0        install AngularJS-Toaster#2.2.0
  360. bower angular-messages#^1.5.8         install angular-messages#1.6.9
  361. bower angular-animate#^1.5.8          install angular-animate#1.6.9
  362. bower angular-moment#^1.2.0           install angular-moment#1.2.0
  363. bower ng-focus-if#master              install ng-focus-if#803bc0e3e1
  364. bower angular-sanitize#^1.6.1         install angular-sanitize#1.6.9
  365. bower ngSmoothScroll#master           install ngSmoothScroll#6ea9ace56e
  366. bower angular-trix#^1.0.2             install angular-trix#1.0.2
  367. bower moment#^2.21.0                  install moment#2.22.0
  368. bower lodash#^4.17.2                  install lodash#4.17.5
  369. bower ng-file-upload#^12.2.13         install ng-file-upload#12.2.13
  370. bower angular#1.6.9                   install angular#1.6.9
  371. bower jquery#^3.1.1                   install jquery#3.3.1
  372. bower angular-material#master         install angular-material#13e70e998c
  373. bower font-awesome#^4.7.0             install font-awesome#4.7.0
  374. bower angular-ui-router#^0.3.1        install angular-ui-router#0.3.2
  375. bower trix#*                          install trix#0.11.2
  376. bower materialize#^0.97.8             install materialize#0.97.8
  377.  
  378. angular-aria#1.6.9 bower_components/angular-aria
  379. └── angular#1.6.9
  380.  
  381. animate.css#3.5.2 bower_components/animate.css
  382.  
  383. AngularJS-Toaster#2.2.0 bower_components/AngularJS-Toaster
  384. ├── angular#1.6.9
  385. └── angular-animate#1.6.9
  386.  
  387. angular-messages#1.6.9 bower_components/angular-messages
  388. └── angular#1.6.9
  389.  
  390. angular-animate#1.6.9 bower_components/angular-animate
  391. └── angular#1.6.9
  392.  
  393. angular-moment#1.2.0 bower_components/angular-moment
  394. ├── angular#1.6.9
  395. └── moment#2.22.0
  396.  
  397. ng-focus-if#803bc0e3e1 bower_components/ng-focus-if
  398. └── angular#1.6.9
  399.  
  400. angular-sanitize#1.6.9 bower_components/angular-sanitize
  401. └── angular#1.6.9
  402.  
  403. ngSmoothScroll#6ea9ace56e bower_components/ngSmoothScroll
  404. └── angular#1.6.9
  405.  
  406. angular-trix#1.0.2 bower_components/angular-trix
  407. ├── angular#1.6.9
  408. └── trix#0.11.2
  409.  
  410. moment#2.22.0 bower_components/moment
  411.  
  412. lodash#4.17.5 bower_components/lodash
  413.  
  414. ng-file-upload#12.2.13 bower_components/ng-file-upload
  415. └── angular#1.6.9
  416.  
  417. angular#1.6.9 bower_components/angular
  418.  
  419. jquery#3.3.1 bower_components/jquery
  420.  
  421. angular-material#13e70e998c bower_components/angular-material
  422. ├── angular#1.6.9
  423. ├── angular-animate#1.6.9
  424. ├── angular-aria#1.6.9
  425. └── angular-messages#1.6.9
  426.  
  427. font-awesome#4.7.0 bower_components/font-awesome
  428.  
  429. angular-ui-router#0.3.2 bower_components/angular-ui-router
  430. └── angular#1.6.9
  431.  
  432. trix#0.11.2 bower_components/trix
  433.  
  434. materialize#0.97.8 bower_components/materialize
  435. └── jquery#3.3.1
  436. Removing intermediate container eaa75bc5c61f
  437. ---> 8f2e3e4c3460
  438. Step 19/21 : ADD . /code
  439. ---> 7c8a3d23b3ef
  440. Step 20/21 : CMD ["gulp", "dev:runserver"]
  441. ---> Running in 3087f717e21a
  442. Removing intermediate container 3087f717e21a
  443. ---> f4abfbe5ec6b
  444. Step 21/21 : EXPOSE 8888
  445. ---> Running in 46153350bf8d
  446. Removing intermediate container 46153350bf8d
  447. ---> 509506cd4853
  448. Successfully built 509506cd4853
  449. Successfully tagged evalai_nodejs:latest
  450. Pulling db (postgres:latest)...
  451. latest: Pulling from library/postgres
  452. c73ab1c6897b: Pull complete
  453. e94aaf8397f8: Pull complete
  454. 0853c2cf63f7: Pull complete
  455. 487961619c6f: Pull complete
  456. b3fe80b87ac6: Pull complete
  457. 4ca9a0468275: Pull complete
  458. b08717267268: Pull complete
  459. 46e01a893aae: Pull complete
  460. 6a59d7eed20d: Pull complete
  461. 92ce89955be9: Pull complete
  462. 72d094cdd68b: Pull complete
  463. 551b1e46cd6f: Pull complete
  464. a3591a6c2a19: Pull complete
  465. Digest: sha256:d5787305ec0a3b9a24d0108cb5fdbb4befbd809f85639bf04aa1941138df9701
  466. Status: Downloaded newer image for postgres:latest
  467. Pulling rabbitmq (rabbitmq:latest)...
  468. latest: Pulling from library/rabbitmq
  469. 2a72cbf407d6: Pull complete
  470. 503bf932383f: Pull complete
  471. f03a47f5528b: Pull complete
  472. 64044b5cb8a5: Pull complete
  473. b286cfe0ed10: Pull complete
  474. d1eedb478585: Pull complete
  475. 189086b1c693: Pull complete
  476. 7b609b52ebd2: Pull complete
  477. c6129d82ed12: Pull complete
  478. e4a5d104cbea: Pull complete
  479. c6c87accb857: Pull complete
  480. e5afccea8158: Pull complete
  481. Digest: sha256:443b95ecc1bb63797b0244452ba207cb5d1abf6530690ac98ebfc46a3bd79a2b
  482. Status: Downloaded newer image for rabbitmq:latest
  483. Building django
  484. Step 1/16 : FROM python:2.7
  485. 2.7: Pulling from library/python
  486. f2b6b4884fc8: Already exists
  487. 4fb899b4df21: Already exists
  488. 74eaa8be7221: Already exists
  489. 2d6e98fe4040: Already exists
  490. 414666f7554d: Pull complete
  491. bb0bcc8d7f6a: Pull complete
  492. a571bb44bc32: Pull complete
  493. aa6d783919f6: Pull complete
  494. Digest: sha256:2a9835c74033e649f633dd2ac669656cdd81c82aee26b3f7d5c712193215fe75
  495. Status: Downloaded newer image for python:2.7
  496. ---> 2863c80c418c
  497. Step 2/16 : MAINTAINER CloudCV
  498. ---> Running in 1b5a82a61cb9
  499. Removing intermediate container 1b5a82a61cb9
  500. ---> 41320f0c2afc
  501. Step 3/16 : ENV PYTHONUNBUFFERED 1
  502. ---> Running in de4118ac37ae
  503. Removing intermediate container de4118ac37ae
  504. ---> 3d68526a035a
  505. Step 4/16 : ENV DEBIAN_FRONTEND noninteractive
  506. ---> Running in c1079190381d
  507. Removing intermediate container c1079190381d
  508. ---> c8d8cf193a54
  509. Step 5/16 : RUN apt-get update     && apt-get upgrade -y     && apt-get install -y
  510. ---> Running in 99c6a5d27dd3
  511. Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
  512. Ign http://deb.debian.org jessie InRelease
  513. Get:2 http://deb.debian.org jessie-updates InRelease [145 kB]
  514. Get:3 http://deb.debian.org jessie Release.gpg [2434 B]
  515. Get:4 http://deb.debian.org jessie Release [148 kB]
  516. Get:5 http://security.debian.org jessie/updates/main amd64 Packages [644 kB]
  517. Get:6 http://deb.debian.org jessie-updates/main amd64 Packages [23.1 kB]
  518. Get:7 http://deb.debian.org jessie/main amd64 Packages [9064 kB]
  519. Fetched 10.1 MB in 9s (1058 kB/s)
  520. Reading package lists...
  521. Reading package lists...
  522. Building dependency tree...
  523. Reading state information...
  524. The following packages will be upgraded:
  525.  curl libcurl3 libcurl3-gnutls libcurl4-openssl-dev libicu52 libssl-dev
  526.  libssl1.0.0 openssl tzdata
  527. 9 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  528. Need to get 11.1 MB of archives.
  529. After this operation, 160 kB disk space will be freed.
  530. Get:1 http://security.debian.org/ jessie/updates/main libssl-dev amd64 1.0.1t-1+deb8u8 [1279 kB]
  531. Get:2 http://deb.debian.org/debian/ jessie-updates/main tzdata all 2018d-0+deb8u1 [232 kB]
  532. Get:3 http://security.debian.org/ jessie/updates/main libssl1.0.0 amd64 1.0.1t-1+deb8u8 [1044 kB]
  533. Get:4 http://security.debian.org/ jessie/updates/main libcurl4-openssl-dev amd64 7.38.0-4+deb8u10 [337 kB]
  534. Get:5 http://security.debian.org/ jessie/updates/main curl amd64 7.38.0-4+deb8u10 [201 kB]
  535. Get:6 http://security.debian.org/ jessie/updates/main libcurl3 amd64 7.38.0-4+deb8u10 [260 kB]
  536. Get:7 http://security.debian.org/ jessie/updates/main libcurl3-gnutls amd64 7.38.0-4+deb8u10 [252 kB]
  537. Get:8 http://security.debian.org/ jessie/updates/main libicu52 amd64 52.1-8+deb8u7 [6807 kB]
  538. Get:9 http://security.debian.org/ jessie/updates/main openssl amd64 1.0.1t-1+deb8u8 [664 kB]
  539. debconf: delaying package configuration, since apt-utils is not installed
  540. Fetched 11.1 MB in 7s (1554 kB/s)
  541. (Reading database ... 21636 files and directories currently installed.)
  542. Preparing to unpack .../libssl-dev_1.0.1t-1+deb8u8_amd64.deb ...
  543. Unpacking libssl-dev:amd64 (1.0.1t-1+deb8u8) over (1.0.1t-1+deb8u7) ...
  544. Preparing to unpack .../libssl1.0.0_1.0.1t-1+deb8u8_amd64.deb ...
  545. Unpacking libssl1.0.0:amd64 (1.0.1t-1+deb8u8) over (1.0.1t-1+deb8u7) ...
  546. Preparing to unpack .../libcurl4-openssl-dev_7.38.0-4+deb8u10_amd64.deb ...
  547. Unpacking libcurl4-openssl-dev:amd64 (7.38.0-4+deb8u10) over (7.38.0-4+deb8u9) ...
  548. Preparing to unpack .../curl_7.38.0-4+deb8u10_amd64.deb ...
  549. Unpacking curl (7.38.0-4+deb8u10) over (7.38.0-4+deb8u9) ...
  550. Preparing to unpack .../libcurl3_7.38.0-4+deb8u10_amd64.deb ...
  551. Unpacking libcurl3:amd64 (7.38.0-4+deb8u10) over (7.38.0-4+deb8u9) ...
  552. Preparing to unpack .../libcurl3-gnutls_7.38.0-4+deb8u10_amd64.deb ...
  553. Unpacking libcurl3-gnutls:amd64 (7.38.0-4+deb8u10) over (7.38.0-4+deb8u9) ...
  554. Preparing to unpack .../libicu52_52.1-8+deb8u7_amd64.deb ...
  555. Unpacking libicu52:amd64 (52.1-8+deb8u7) over (52.1-8+deb8u6) ...
  556. Preparing to unpack .../tzdata_2018d-0+deb8u1_all.deb ...
  557. Unpacking tzdata (2018d-0+deb8u1) over (2018c-0+deb8u1) ...
  558. Setting up tzdata (2018d-0+deb8u1) ...
  559.  
  560. Current default time zone: 'Etc/UTC'
  561. Local time is now:      Tue Apr 10 16:20:36 UTC 2018.
  562. Universal Time is now:  Tue Apr 10 16:20:36 UTC 2018.
  563. Run 'dpkg-reconfigure tzdata' if you wish to change it.
  564.  
  565. (Reading database ... 21636 files and directories currently installed.)
  566. Preparing to unpack .../openssl_1.0.1t-1+deb8u8_amd64.deb ...
  567. Unpacking openssl (1.0.1t-1+deb8u8) over (1.0.1t-1+deb8u7) ...
  568. Setting up libssl1.0.0:amd64 (1.0.1t-1+deb8u8) ...
  569. Setting up libssl-dev:amd64 (1.0.1t-1+deb8u8) ...
  570. Setting up libcurl3:amd64 (7.38.0-4+deb8u10) ...
  571. Setting up libcurl4-openssl-dev:amd64 (7.38.0-4+deb8u10) ...
  572. Setting up curl (7.38.0-4+deb8u10) ...
  573. Setting up libcurl3-gnutls:amd64 (7.38.0-4+deb8u10) ...
  574. Setting up libicu52:amd64 (52.1-8+deb8u7) ...
  575. Setting up openssl (1.0.1t-1+deb8u8) ...
  576. Processing triggers for libc-bin (2.19-18+deb8u10) ...
  577. Reading package lists...
  578. Building dependency tree...
  579. Reading state information...
  580. 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
  581. Removing intermediate container 99c6a5d27dd3
  582. ---> d97f410a87d4
  583. Step 6/16 : RUN apt-get install -y apt-utils
  584. ---> Running in 41c4e4a4b794
  585. Reading package lists...
  586. Building dependency tree...
  587. Reading state information...
  588. The following extra packages will be installed:
  589.  libapt-inst1.5
  590. The following NEW packages will be installed:
  591.  apt-utils libapt-inst1.5
  592. 0 upgraded, 2 newly installed, 0 to remove and 0 not upgraded.
  593. Need to get 537 kB of archives.
  594. After this operation, 1333 kB of additional disk space will be used.
  595. Get:1 http://deb.debian.org/debian/ jessie/main libapt-inst1.5 amd64 1.0.9.8.4 [169 kB]
  596. Get:2 http://deb.debian.org/debian/ jessie/main apt-utils amd64 1.0.9.8.4 [368 kB]
  597. debconf: delaying package configuration, since apt-utils is not installed
  598. Fetched 537 kB in 1s (348 kB/s)
  599. Selecting previously unselected package libapt-inst1.5:amd64.
  600. (Reading database ... 21636 files and directories currently installed.)
  601. Preparing to unpack .../libapt-inst1.5_1.0.9.8.4_amd64.deb ...
  602. Unpacking libapt-inst1.5:amd64 (1.0.9.8.4) ...
  603. Selecting previously unselected package apt-utils.
  604. Preparing to unpack .../apt-utils_1.0.9.8.4_amd64.deb ...
  605. Unpacking apt-utils (1.0.9.8.4) ...
  606. Setting up libapt-inst1.5:amd64 (1.0.9.8.4) ...
  607. Setting up apt-utils (1.0.9.8.4) ...
  608. Processing triggers for libc-bin (2.19-18+deb8u10) ...
  609. Removing intermediate container 41c4e4a4b794
  610. ---> 8ab9aaf6b555
  611. Step 7/16 : RUN groupadd webapps
  612. ---> Running in eba1dc9c9b8d
  613. Removing intermediate container eba1dc9c9b8d
  614. ---> 4a52ceafd76d
  615. Step 8/16 : RUN useradd evalai -G webapps
  616. ---> Running in 3e0f4138e4be
  617. Removing intermediate container 3e0f4138e4be
  618. ---> 182ca13fcb57
  619. Step 9/16 : RUN mkdir -p /var/log/evalai/ && chown -R evalai /var/log/evalai/ && chmod -R u+rX /var/log/evalai/
  620. ---> Running in 32c3f3369c67
  621. Removing intermediate container 32c3f3369c67
  622. ---> 60589407bd07
  623. Step 10/16 : RUN mkdir -p /var/run/evalai/ && chown -R evalai /var/run/evalai/ && chmod -R u+rX /var/run/evalai/
  624. ---> Running in 897ed2c23aec
  625. Removing intermediate container 897ed2c23aec
  626. ---> e782f90ad238
  627. Step 11/16 : WORKDIR /code
  628. Removing intermediate container a39aa212042d
  629. ---> 111c8e3d90d1
  630. Step 12/16 : ADD ./ /code/
  631. ---> d9f03e561237
  632. Step 13/16 : COPY settings/dev.sample.py /code/settings/dev.py
  633. ---> 6741073d9f63
  634. Step 14/16 : RUN pip install -r requirements/dev.txt
  635. ---> Running in e23f5a747656
  636. Collecting asgi-redis==1.4.3 (from -r requirements/common.txt (line 1))
  637.  Downloading asgi_redis-1.4.3-py2.py3-none-any.whl
  638. Collecting commonmark==0.5.4 (from -r requirements/common.txt (line 2))
  639.  Downloading CommonMark-0.5.4.tar.gz (120kB)
  640. Collecting django==1.10.2 (from -r requirements/common.txt (line 3))
  641.  Downloading Django-1.10.2-py2.py3-none-any.whl (6.8MB)
  642. Collecting django-import-export==0.5.1 (from -r requirements/common.txt (line 4))
  643.  Downloading django-import-export-0.5.1.tar.gz
  644. Collecting djangorestframework==3.5.2 (from -r requirements/common.txt (line 5))
  645.  Downloading djangorestframework-3.5.2-py2.py3-none-any.whl (709kB)
  646. Collecting djangorestframework-expiring-authtoken==0.1.4 (from -r requirements/common.txt (line 6))
  647.  Downloading djangorestframework_expiring_authtoken-0.1.4-py2.py3-none-any.whl
  648. Collecting django-cors-headers==1.3.1 (from -r requirements/common.txt (line 7))
  649.  Downloading django_cors_headers-1.3.1-py2.py3-none-any.whl
  650. Collecting django-rest-auth[with_social]==0.9.2 (from -r requirements/common.txt (line 8))
  651.  Downloading django-rest-auth-0.9.2.tar.gz
  652. Collecting django-ses==0.8.5 (from -r requirements/common.txt (line 9))
  653.  Downloading django_ses-0.8.5-py2.py3-none-any.whl
  654. Collecting drfdocs==0.0.11 (from -r requirements/common.txt (line 10))
  655.  Downloading drfdocs-0.0.11.tar.gz (771kB)
  656. Collecting pika==0.10.0 (from -r requirements/common.txt (line 11))
  657.  Downloading pika-0.10.0-py2.py3-none-any.whl (92kB)
  658. Collecting pickleshare==0.7.4 (from -r requirements/common.txt (line 12))
  659.  Downloading pickleshare-0.7.4-py2.py3-none-any.whl
  660. Collecting Pillow==3.4.2 (from -r requirements/common.txt (line 13))
  661.  Downloading Pillow-3.4.2-cp27-cp27mu-manylinux1_x86_64.whl (5.6MB)
  662. Collecting psycopg2==2.7.3.2 (from -r requirements/common.txt (line 14))
  663.  Downloading psycopg2-2.7.3.2-cp27-cp27mu-manylinux1_x86_64.whl (2.7MB)
  664. Collecting PyYaml==3.12 (from -r requirements/common.txt (line 15))
  665.  Downloading PyYAML-3.12.tar.gz (253kB)
  666. Collecting proc==0.10.1 (from -r requirements/common.txt (line 16))
  667.  Downloading proc-0.10.1-py2.py3-none-any.whl (40kB)
  668. Collecting rstr==2.2.5 (from -r requirements/common.txt (line 17))
  669.  Downloading rstr-2.2.5.tar.gz
  670. Collecting autopep8==1.2.4 (from -r requirements/dev.txt (line 3))
  671.  Downloading autopep8-1.2.4-py2.py3-none-any.whl (41kB)
  672. Collecting coverage==4.2 (from -r requirements/dev.txt (line 4))
  673.  Downloading coverage-4.2.tar.gz (359kB)
  674. Collecting coveralls==1.1 (from -r requirements/dev.txt (line 5))
  675.  Downloading coveralls-1.1-py2.py3-none-any.whl
  676. Collecting django-autofixture==0.12.1 (from -r requirements/dev.txt (line 6))
  677.  Downloading django-autofixture-0.12.1.tar.gz
  678. Collecting django-debug-toolbar==1.8 (from -r requirements/dev.txt (line 7))
  679.  Downloading django_debug_toolbar-1.8-py2.py3-none-any.whl (205kB)
  680. Collecting django-extensions==1.7.8 (from -r requirements/dev.txt (line 8))
  681.  Downloading django_extensions-1.7.8-py2.py3-none-any.whl (202kB)
  682. Collecting django-silk==1.0.0 (from -r requirements/dev.txt (line 9))
  683.  Downloading django_silk-1.0.0-py2.py3-none-any.whl (1.4MB)
  684. Collecting django-spaghetti-and-meatballs==0.2.2 (from -r requirements/dev.txt (line 10))
  685.  Downloading django-spaghetti-and-meatballs-0.2.2.tar.gz
  686. Collecting flake8==3.0.4 (from -r requirements/dev.txt (line 11))
  687.  Downloading flake8-3.0.4-py2.py3-none-any.whl (64kB)
  688. Collecting pytest-cov==2.4.0 (from -r requirements/dev.txt (line 12))
  689.  Downloading pytest_cov-2.4.0-py2.py3-none-any.whl
  690. Collecting pytest==3.0.3 (from -r requirements/dev.txt (line 13))
  691.  Downloading pytest-3.0.3-py2.py3-none-any.whl (169kB)
  692. Collecting recommonmark==0.4.0 (from -r requirements/dev.txt (line 14))
  693.  Downloading recommonmark-0.4.0-py2.py3-none-any.whl
  694. Collecting sphinx==1.4.8 (from -r requirements/dev.txt (line 15))
  695.  Downloading Sphinx-1.4.8-py2.py3-none-any.whl (1.6MB)
  696. Collecting sphinx-autobuild==0.6.0 (from -r requirements/dev.txt (line 16))
  697.  Downloading sphinx_autobuild-0.6.0-py2-none-any.whl
  698. Collecting sphinx-rtd-theme==0.1.9 (from -r requirements/dev.txt (line 17))
  699.  Downloading sphinx_rtd_theme-0.1.9-py2-none-any.whl (693kB)
  700. Collecting pytest-django==3.1.2 (from -r requirements/dev.txt (line 18))
  701.  Downloading pytest_django-3.1.2-py2.py3-none-any.whl
  702. Collecting Faker==0.7.7 (from -r requirements/dev.txt (line 19))
  703.  Downloading Faker-0.7.7-py2.py3-none-any.whl (562kB)
  704. Collecting asgiref~=1.1.2 (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  705.  Downloading asgiref-1.1.2-py2.py3-none-any.whl
  706. Collecting six (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  707.  Downloading six-1.11.0-py2.py3-none-any.whl
  708. Collecting msgpack-python (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  709.  Downloading msgpack-python-0.5.6.tar.gz (138kB)
  710. Collecting redis~=2.10.6 (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  711.  Downloading redis-2.10.6-py2.py3-none-any.whl (64kB)
  712. Collecting tablib (from django-import-export==0.5.1->-r requirements/common.txt (line 4))
  713.  Downloading tablib-0.12.1.tar.gz (63kB)
  714. Collecting diff-match-patch (from django-import-export==0.5.1->-r requirements/common.txt (line 4))
  715.  Downloading diff-match-patch-20121119.tar.gz (54kB)
  716. Collecting django-allauth>=0.25.0 (from django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  717.  Downloading django-allauth-0.35.0.tar.gz (482kB)
  718. Collecting pytz>=2016.10 (from django-ses==0.8.5->-r requirements/common.txt (line 9))
  719.  Downloading pytz-2018.4-py2.py3-none-any.whl (510kB)
  720. Collecting future>=0.16.0 (from django-ses==0.8.5->-r requirements/common.txt (line 9))
  721.  Downloading future-0.16.0.tar.gz (824kB)
  722. Collecting boto>=2.31.0 (from django-ses==0.8.5->-r requirements/common.txt (line 9))
  723.  Downloading boto-2.48.0-py2.py3-none-any.whl (1.4MB)
  724. Collecting pathlib2; python_version in "2.6 2.7 3.2 3.3" (from pickleshare==0.7.4->-r requirements/common.txt (line 12))
  725.  Downloading pathlib2-2.3.0-py2.py3-none-any.whl
  726. Collecting property-manager>=1.2 (from proc==0.10.1->-r requirements/common.txt (line 16))
  727.  Downloading property_manager-2.2-py2.py3-none-any.whl
  728. Collecting executor>=10.0 (from proc==0.10.1->-r requirements/common.txt (line 16))
  729.  Downloading executor-19.1-py2.py3-none-any.whl (79kB)
  730. Collecting humanfriendly>=1.35 (from proc==0.10.1->-r requirements/common.txt (line 16))
  731.  Downloading humanfriendly-4.10-py2.py3-none-any.whl (68kB)
  732. Collecting coloredlogs>=5.0 (from proc==0.10.1->-r requirements/common.txt (line 16))
  733.  Downloading coloredlogs-9.0-py2.py3-none-any.whl (43kB)
  734. Collecting pep8>=1.5.7 (from autopep8==1.2.4->-r requirements/dev.txt (line 3))
  735.  Downloading pep8-1.7.1-py2.py3-none-any.whl (41kB)
  736. Collecting requests>=1.0.0 (from coveralls==1.1->-r requirements/dev.txt (line 5))
  737.  Downloading requests-2.18.4-py2.py3-none-any.whl (88kB)
  738. Collecting docopt>=0.6.1 (from coveralls==1.1->-r requirements/dev.txt (line 5))
  739.  Downloading docopt-0.6.2.tar.gz
  740. Requirement already satisfied: setuptools in /usr/local/lib/python2.7/site-packages (from django-autofixture==0.12.1->-r requirements/dev.txt (line 6))
  741. Collecting sqlparse>=0.2.0 (from django-debug-toolbar==1.8->-r requirements/dev.txt (line 7))
  742.  Downloading sqlparse-0.2.4-py2.py3-none-any.whl
  743. Collecting Jinja2 (from django-silk==1.0.0->-r requirements/dev.txt (line 9))
  744.  Downloading Jinja2-2.10-py2.py3-none-any.whl (126kB)
  745. Collecting python-dateutil (from django-silk==1.0.0->-r requirements/dev.txt (line 9))
  746.  Downloading python_dateutil-2.7.2-py2.py3-none-any.whl (212kB)
  747. Collecting Pygments (from django-silk==1.0.0->-r requirements/dev.txt (line 9))
  748.  Downloading Pygments-2.2.0-py2.py3-none-any.whl (841kB)
  749. Collecting enum34; python_version < "3.4" (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  750.  Downloading enum34-1.1.6-py2-none-any.whl
  751. Collecting configparser; python_version < "3.2" (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  752.  Downloading configparser-3.5.0.tar.gz
  753. Collecting mccabe<0.6.0,>=0.5.0 (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  754.  Downloading mccabe-0.5.3-py2.py3-none-any.whl
  755. Collecting pycodestyle<2.1.0,>=2.0.0 (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  756.  Downloading pycodestyle-2.0.0-py2.py3-none-any.whl (42kB)
  757. Collecting pyflakes!=1.2.0,!=1.2.1,!=1.2.2,<1.3.0,>=0.8.1 (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  758.  Downloading pyflakes-1.2.3-py2.py3-none-any.whl (209kB)
  759. Collecting py>=1.4.29 (from pytest==3.0.3->-r requirements/dev.txt (line 13))
  760.  Downloading py-1.5.3-py2.py3-none-any.whl (84kB)
  761. Collecting docutils>=0.11 (from recommonmark==0.4.0->-r requirements/dev.txt (line 14))
  762.  Downloading docutils-0.14-py2-none-any.whl (543kB)
  763. Collecting babel!=2.0,>=1.3 (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  764.  Downloading Babel-2.5.3-py2.py3-none-any.whl (6.8MB)
  765. Collecting imagesize (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  766.  Downloading imagesize-1.0.0-py2.py3-none-any.whl
  767. Collecting alabaster<0.8,>=0.7 (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  768.  Downloading alabaster-0.7.10-py2.py3-none-any.whl
  769. Collecting snowballstemmer>=1.1 (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  770.  Downloading snowballstemmer-1.2.1-py2.py3-none-any.whl (64kB)
  771. Collecting port-for==0.3.1 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  772.  Downloading port-for-0.3.1.tar.gz
  773. Collecting tornado>=3.2 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  774.  Downloading tornado-5.0.2.tar.gz (506kB)
  775. Collecting pathtools>=0.1.2 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  776.  Downloading pathtools-0.1.2.tar.gz
  777. Collecting livereload>=2.3.0 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  778.  Downloading livereload-2.5.1-py2-none-any.whl
  779. Collecting argh>=0.24.1 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  780.  Downloading argh-0.26.2-py2.py3-none-any.whl
  781. Collecting watchdog>=0.7.1 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  782.  Downloading watchdog-0.8.3.tar.gz (83kB)
  783. Collecting ipaddress; python_version == "2.7" (from Faker==0.7.7->-r requirements/dev.txt (line 19))
  784.  Downloading ipaddress-1.0.19.tar.gz
  785. Collecting odfpy (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  786.  Downloading odfpy-1.3.6.tar.gz (691kB)
  787. Collecting openpyxl (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  788.  Downloading openpyxl-2.5.2.tar.gz (170kB)
  789. Collecting unicodecsv (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  790.  Downloading unicodecsv-0.14.1.tar.gz
  791. Collecting xlrd (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  792.  Downloading xlrd-1.1.0-py2.py3-none-any.whl (108kB)
  793. Collecting xlwt (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  794.  Downloading xlwt-1.3.0-py2.py3-none-any.whl (99kB)
  795. Collecting python-openid>=2.2.5 (from django-allauth>=0.25.0->django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  796.  Downloading python-openid-2.2.5.tar.gz (301kB)
  797. Collecting requests-oauthlib>=0.3.0 (from django-allauth>=0.25.0->django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  798.  Downloading requests_oauthlib-0.8.0-py2.py3-none-any.whl
  799. Collecting scandir; python_version < "3.5" (from pathlib2; python_version in "2.6 2.7 3.2 3.3"->pickleshare==0.7.4->-r requirements/common.txt (line 12))
  800.  Downloading scandir-1.7.tar.gz
  801. Collecting verboselogs>=1.1 (from property-manager>=1.2->proc==0.10.1->-r requirements/common.txt (line 16))
  802.  Downloading verboselogs-1.7-py2.py3-none-any.whl
  803. Collecting fasteners>=0.14.1 (from executor>=10.0->proc==0.10.1->-r requirements/common.txt (line 16))
  804.  Downloading fasteners-0.14.1-py2.py3-none-any.whl
  805. Collecting monotonic; python_version == "2.6" or python_version == "2.7" or python_version == "3.0" or python_version == "3.1" or python_version == "3.2" (from humanfriendly>=1.35->proc==0.10.1->-r requirements/common.txt (line 16))
  806.  Downloading monotonic-1.4-py2.py3-none-any.whl
  807. Collecting idna<2.7,>=2.5 (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  808.  Downloading idna-2.6-py2.py3-none-any.whl (56kB)
  809. Collecting urllib3<1.23,>=1.21.1 (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  810.  Downloading urllib3-1.22-py2.py3-none-any.whl (132kB)
  811. Collecting certifi>=2017.4.17 (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  812.  Downloading certifi-2018.1.18-py2.py3-none-any.whl (151kB)
  813. Collecting chardet<3.1.0,>=3.0.2 (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  814.  Downloading chardet-3.0.4-py2.py3-none-any.whl (133kB)
  815. Collecting MarkupSafe>=0.23 (from Jinja2->django-silk==1.0.0->-r requirements/dev.txt (line 9))
  816.  Downloading MarkupSafe-1.0.tar.gz
  817. Collecting futures (from tornado>=3.2->sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  818.  Downloading futures-3.2.0-py2-none-any.whl
  819. Collecting singledispatch (from tornado>=3.2->sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  820.  Downloading singledispatch-3.4.0.3-py2.py3-none-any.whl
  821. Collecting backports_abc>=0.4 (from tornado>=3.2->sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  822.  Downloading backports_abc-0.5-py2.py3-none-any.whl
  823. Collecting jdcal (from openpyxl->tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  824.  Downloading jdcal-1.3.tar.gz
  825. Collecting et_xmlfile (from openpyxl->tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  826.  Downloading et_xmlfile-1.0.1.tar.gz
  827. Collecting oauthlib>=0.6.2 (from requests-oauthlib>=0.3.0->django-allauth>=0.25.0->django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  828.  Downloading oauthlib-2.0.7-py2.py3-none-any.whl (124kB)
  829. Building wheels for collected packages: commonmark, django-import-export, django-rest-auth, drfdocs, PyYaml, rstr, coverage, django-autofixture, django-spaghetti-and-meatballs, msgpack-python, tablib, diff-match-patch, django-allauth, future, docopt, configparser, port-for, tornado, pathtools, watchdog, ipaddress, odfpy, openpyxl, unicodecsv, python-openid, scandir, MarkupSafe, jdcal, et-xmlfile
  830.  Running setup.py bdist_wheel for commonmark: started
  831.  Running setup.py bdist_wheel for commonmark: finished with status 'done'
  832.  Stored in directory: /root/.cache/pip/wheels/fd/3a/ea/9ead7944d8ba3771888487ca4f6ef39bcde9fd4e986c32f442
  833.  Running setup.py bdist_wheel for django-import-export: started
  834.  Running setup.py bdist_wheel for django-import-export: finished with status 'done'
  835.  Stored in directory: /root/.cache/pip/wheels/15/89/cf/54f0587107f6f7a7e04c9b8fc1d562f345628951162d97ae5f
  836.  Running setup.py bdist_wheel for django-rest-auth: started
  837.  Running setup.py bdist_wheel for django-rest-auth: finished with status 'done'
  838.  Stored in directory: /root/.cache/pip/wheels/32/34/e7/69c0540917a365649841c84d2c63781f6e551c5f29a52486bb
  839.  Running setup.py bdist_wheel for drfdocs: started
  840.  Running setup.py bdist_wheel for drfdocs: finished with status 'done'
  841.  Stored in directory: /root/.cache/pip/wheels/fa/f2/83/6f202415d7f150075200e8d197fc62c406215b53d4d9ad9892
  842.  Running setup.py bdist_wheel for PyYaml: started
  843.  Running setup.py bdist_wheel for PyYaml: finished with status 'done'
  844.  Stored in directory: /root/.cache/pip/wheels/2c/f7/79/13f3a12cd723892437c0cfbde1230ab4d82947ff7b3839a4fc
  845.  Running setup.py bdist_wheel for rstr: started
  846.  Running setup.py bdist_wheel for rstr: finished with status 'done'
  847.  Stored in directory: /root/.cache/pip/wheels/2b/f4/7e/a373ab0828b20424162c58773611710ff9af25f453e2de156f
  848.  Running setup.py bdist_wheel for coverage: started
  849.  Running setup.py bdist_wheel for coverage: finished with status 'done'
  850.  Stored in directory: /root/.cache/pip/wheels/6f/54/a5/e7629c41b30061b18f0ccbe4be643ed4cf5329f7b2459cf9ae
  851.  Running setup.py bdist_wheel for django-autofixture: started
  852.  Running setup.py bdist_wheel for django-autofixture: finished with status 'done'
  853.  Stored in directory: /root/.cache/pip/wheels/e6/32/70/7b6b2a8ed2d6bee4a29aa28fde90544ca315383a256ec43c3e
  854.  Running setup.py bdist_wheel for django-spaghetti-and-meatballs: started
  855.  Running setup.py bdist_wheel for django-spaghetti-and-meatballs: finished with status 'done'
  856.  Stored in directory: /root/.cache/pip/wheels/fd/4a/1d/0ea63a42bae592e55ce02f50295f4a3045aefa5d1feb82bf46
  857.  Running setup.py bdist_wheel for msgpack-python: started
  858.  Running setup.py bdist_wheel for msgpack-python: finished with status 'done'
  859.  Stored in directory: /root/.cache/pip/wheels/b8/61/ee/5dd2c6dcd39238fda7981f1ec0f1476c7b678d6e6dc63eeec5
  860.  Running setup.py bdist_wheel for tablib: started
  861.  Running setup.py bdist_wheel for tablib: finished with status 'done'
  862.  Stored in directory: /root/.cache/pip/wheels/77/f4/ae/9413f885030d2b283e34278004aba422c1261f02cafe3f5b74
  863.  Running setup.py bdist_wheel for diff-match-patch: started
  864.  Running setup.py bdist_wheel for diff-match-patch: finished with status 'done'
  865.  Stored in directory: /root/.cache/pip/wheels/0f/25/63/23c1c4e5589d32c69103ab864bc655f9e803fe344408e856fd
  866.  Running setup.py bdist_wheel for django-allauth: started
  867.  Running setup.py bdist_wheel for django-allauth: finished with status 'done'
  868.  Stored in directory: /root/.cache/pip/wheels/88/01/e3/5c32a87e0579d70a40af20238bda23d3c7205d0153bd9c48f0
  869.  Running setup.py bdist_wheel for future: started
  870.  Running setup.py bdist_wheel for future: finished with status 'done'
  871.  Stored in directory: /root/.cache/pip/wheels/c2/50/7c/0d83b4baac4f63ff7a765bd16390d2ab43c93587fac9d6017a
  872.  Running setup.py bdist_wheel for docopt: started
  873.  Running setup.py bdist_wheel for docopt: finished with status 'done'
  874.  Stored in directory: /root/.cache/pip/wheels/b2/16/5f/c33a2bb5f2dce71205f8e65cbfd05647d79d441282be31fd82
  875.  Running setup.py bdist_wheel for configparser: started
  876.  Running setup.py bdist_wheel for configparser: finished with status 'done'
  877.  Stored in directory: /root/.cache/pip/wheels/1c/bd/b4/277af3f6c40645661b4cd1c21df26aca0f2e1e9714a1d4cda8
  878.  Running setup.py bdist_wheel for port-for: started
  879.  Running setup.py bdist_wheel for port-for: finished with status 'done'
  880.  Stored in directory: /root/.cache/pip/wheels/59/4e/68/d3a42868015e73913b1da097bf0cacfbd9b2261dc7f5796eda
  881.  Running setup.py bdist_wheel for tornado: started
  882.  Running setup.py bdist_wheel for tornado: finished with status 'done'
  883.  Stored in directory: /root/.cache/pip/wheels/a7/c4/73/bc2a2585705932b79e2a9d2d3264b529f4a5947a7167957a70
  884.  Running setup.py bdist_wheel for pathtools: started
  885.  Running setup.py bdist_wheel for pathtools: finished with status 'done'
  886.  Stored in directory: /root/.cache/pip/wheels/60/0d/2a/ffe065d190b580be6af9a862c68ed6a8a89c1778bd5c7ba7b8
  887.  Running setup.py bdist_wheel for watchdog: started
  888.  Running setup.py bdist_wheel for watchdog: finished with status 'done'
  889.  Stored in directory: /root/.cache/pip/wheels/3c/9c/be/e82ae5a37c19baf8abe88623d1f47d2d502bed7b54d4f34740
  890.  Running setup.py bdist_wheel for ipaddress: started
  891.  Running setup.py bdist_wheel for ipaddress: finished with status 'done'
  892.  Stored in directory: /root/.cache/pip/wheels/d7/6b/69/666188e8101897abb2e115d408d139a372bdf6bfa7abb5aef5
  893.  Running setup.py bdist_wheel for odfpy: started
  894.  Running setup.py bdist_wheel for odfpy: finished with status 'done'
  895.  Stored in directory: /root/.cache/pip/wheels/43/b2/d4/5121ca81ef956a1b05b8ff8ee4c95044fa7ff48fedcdd43762
  896.  Running setup.py bdist_wheel for openpyxl: started
  897.  Running setup.py bdist_wheel for openpyxl: finished with status 'done'
  898.  Stored in directory: /root/.cache/pip/wheels/78/19/10/866830f7564cdcb6f78ca6841be465237c66c71aaedf940de3
  899.  Running setup.py bdist_wheel for unicodecsv: started
  900.  Running setup.py bdist_wheel for unicodecsv: finished with status 'done'
  901.  Stored in directory: /root/.cache/pip/wheels/97/e2/16/219fa93b83edaff912b6805cfa19d0597e21f8d353f3e2d22f
  902.  Running setup.py bdist_wheel for python-openid: started
  903.  Running setup.py bdist_wheel for python-openid: finished with status 'done'
  904.  Stored in directory: /root/.cache/pip/wheels/0a/da/67/e9e68f4b5e03732dc17a545b4ce3ce84b4a9bef67253d4ff72
  905.  Running setup.py bdist_wheel for scandir: started
  906.  Running setup.py bdist_wheel for scandir: finished with status 'done'
  907.  Stored in directory: /root/.cache/pip/wheels/3d/51/95/79b749f7e52b5dea9e01b5c72da1c728151fc65a3984c37bec
  908.  Running setup.py bdist_wheel for MarkupSafe: started
  909.  Running setup.py bdist_wheel for MarkupSafe: finished with status 'done'
  910.  Stored in directory: /root/.cache/pip/wheels/88/a7/30/e39a54a87bcbe25308fa3ca64e8ddc75d9b3e5afa21ee32d57
  911.  Running setup.py bdist_wheel for jdcal: started
  912.  Running setup.py bdist_wheel for jdcal: finished with status 'done'
  913.  Stored in directory: /root/.cache/pip/wheels/0f/63/92/19ac65ed64189de4d662f269d39dd08a887258842ad2f29549
  914.  Running setup.py bdist_wheel for et-xmlfile: started
  915.  Running setup.py bdist_wheel for et-xmlfile: finished with status 'done'
  916.  Stored in directory: /root/.cache/pip/wheels/99/f6/53/5e18f3ff4ce36c990fa90ebdf2b80cd9b44dc461f750a1a77c
  917. Successfully built commonmark django-import-export django-rest-auth drfdocs PyYaml rstr coverage django-autofixture django-spaghetti-and-meatballs msgpack-python tablib diff-match-patch django-allauth future docopt configparser port-for tornado pathtools watchdog ipaddress odfpy openpyxl unicodecsv python-openid scandir MarkupSafe jdcal et-xmlfile
  918. Installing collected packages: six, asgiref, msgpack-python, redis, asgi-redis, commonmark, django, odfpy, jdcal, et-xmlfile, openpyxl, unicodecsv, xlrd, xlwt, PyYaml, tablib, diff-match-patch, django-import-export, djangorestframework, djangorestframework-expiring-authtoken, django-cors-headers, python-openid, oauthlib, idna, urllib3, certifi, chardet, requests, requests-oauthlib, django-allauth, django-rest-auth, pytz, future, boto, django-ses, drfdocs, pika, scandir, pathlib2, pickleshare, Pillow, psycopg2, verboselogs, monotonic, humanfriendly, property-manager, coloredlogs, fasteners, executor, proc, rstr, pep8, autopep8, coverage, docopt, coveralls, django-autofixture, sqlparse, django-debug-toolbar, django-extensions, MarkupSafe, Jinja2, python-dateutil, Pygments, django-silk, django-spaghetti-and-meatballs, enum34, configparser, mccabe, pycodestyle, pyflakes, flake8, py, pytest, pytest-cov, docutils, recommonmark, babel, imagesize, alabaster, snowballstemmer, sphinx, port-for, futures, singledispatch, backports-abc, tornado, pathtools, livereload, argh, watchdog, sphinx-autobuild, sphinx-rtd-theme, pytest-django, ipaddress, Faker
  919. Successfully installed Faker-0.7.7 Jinja2-2.10 MarkupSafe-1.0 Pillow-3.4.2 PyYaml-3.12 Pygments-2.2.0 alabaster-0.7.10 argh-0.26.2 asgi-redis-1.4.3 asgiref-1.1.2 autopep8-1.2.4 babel-2.5.3 backports-abc-0.5 boto-2.48.0 certifi-2018.1.18 chardet-3.0.4 coloredlogs-9.0 commonmark-0.5.4 configparser-3.5.0 coverage-4.2 coveralls-1.1 diff-match-patch-20121119 django-1.10.2 django-allauth-0.35.0 django-autofixture-0.12.1 django-cors-headers-1.3.1 django-debug-toolbar-1.8 django-extensions-1.7.8 django-import-export-0.5.1 django-rest-auth-0.9.2 django-ses-0.8.5 django-silk-1.0.0 django-spaghetti-and-meatballs-0.2.2 djangorestframework-3.5.2 djangorestframework-expiring-authtoken-0.1.4 docopt-0.6.2 docutils-0.14 drfdocs-0.0.11 enum34-1.1.6 et-xmlfile-1.0.1 executor-19.1 fasteners-0.14.1 flake8-3.0.4 future-0.16.0 futures-3.2.0 humanfriendly-4.10 idna-2.6 imagesize-1.0.0 ipaddress-1.0.19 jdcal-1.3 livereload-2.5.1 mccabe-0.5.3 monotonic-1.4 msgpack-python-0.5.6 oauthlib-2.0.7 odfpy-1.3.6 openpyxl-2.5.2 pathlib2-2.3.0 pathtools-0.1.2 pep8-1.7.1 pickleshare-0.7.4 pika-0.10.0 port-for-0.3.1 proc-0.10.1 property-manager-2.2 psycopg2-2.7.3.2 py-1.5.3 pycodestyle-2.0.0 pyflakes-1.2.3 pytest-3.0.3 pytest-cov-2.4.0 pytest-django-3.1.2 python-dateutil-2.7.2 python-openid-2.2.5 pytz-2018.4 recommonmark-0.4.0 redis-2.10.6 requests-2.18.4 requests-oauthlib-0.8.0 rstr-2.2.5 scandir-1.7 singledispatch-3.4.0.3 six-1.11.0 snowballstemmer-1.2.1 sphinx-1.4.8 sphinx-autobuild-0.6.0 sphinx-rtd-theme-0.1.9 sqlparse-0.2.4 tablib-0.12.1 tornado-5.0.2 unicodecsv-0.14.1 urllib3-1.22 verboselogs-1.7 watchdog-0.8.3 xlrd-1.1.0 xlwt-1.3.0
  920. Removing intermediate container e23f5a747656
  921. ---> 69b680a29ccf
  922. Step 15/16 : CMD ["sh", "/code/docker/dev/django/container-start.sh"]
  923. ---> Running in 3525931506bd
  924. Removing intermediate container 3525931506bd
  925. ---> d0fc0bd3c7ae
  926. Step 16/16 : EXPOSE 8000
  927. ---> Running in 5307b378213d
  928. Removing intermediate container 5307b378213d
  929. ---> bb51af82261e
  930. Successfully built bb51af82261e
  931. Successfully tagged evalai_django:latest
  932. Building submission-worker
  933. Step 1/10 : FROM python:2.7
  934. ---> 2863c80c418c
  935. Step 2/10 : MAINTAINER CloudCV
  936. ---> Using cache
  937. ---> 41320f0c2afc
  938. Step 3/10 : ENV PYTHONUNBUFFERED 1
  939. ---> Using cache
  940. ---> 3d68526a035a
  941. Step 4/10 : RUN apt-get update && apt-get install -y python python-pip python-dev libpq-dev libjpeg-dev libyaml-dev libffi-dev
  942. ---> Running in cf45027c10fa
  943. Get:1 http://security.debian.org jessie/updates InRelease [63.1 kB]
  944. Ign http://deb.debian.org jessie InRelease
  945. Get:2 http://deb.debian.org jessie-updates InRelease [145 kB]
  946. Get:3 http://deb.debian.org jessie Release.gpg [2434 B]
  947. Get:4 http://deb.debian.org jessie Release [148 kB]
  948. Get:5 http://security.debian.org jessie/updates/main amd64 Packages [644 kB]
  949. Get:6 http://deb.debian.org jessie-updates/main amd64 Packages [23.1 kB]
  950. Get:7 http://deb.debian.org jessie/main amd64 Packages [9064 kB]
  951. Fetched 10.1 MB in 8s (1145 kB/s)
  952. Reading package lists...
  953. Reading package lists...
  954. Building dependency tree...
  955. Reading state information...
  956. libffi-dev is already the newest version.
  957. libjpeg-dev is already the newest version.
  958. libyaml-dev is already the newest version.
  959. libpq-dev is already the newest version.
  960. python is already the newest version.
  961. python set to manually installed.
  962. The following extra packages will be installed:
  963.  build-essential dpkg-dev fakeroot libalgorithm-diff-perl
  964.  libalgorithm-diff-xs-perl libalgorithm-merge-perl libdpkg-perl libfakeroot
  965.  libfile-fcntllock-perl libpython-dev libpython2.7 libpython2.7-dev
  966.  libtimedate-perl python-cffi python-chardet python-colorama
  967.  python-cryptography python-distlib python-html5lib python-ndg-httpsclient
  968.  python-openssl python-pkg-resources python-ply python-pyasn1
  969.  python-pycparser python-requests python-setuptools python-support
  970.  python-urllib3 python-wheel python2.7-dev
  971. Suggested packages:
  972.  debian-keyring python-cryptography-doc python-cryptography-vectors
  973.  python-genshi python-lxml python-openssl-doc python-openssl-dbg
  974.  python-distribute python-distribute-doc python-ply-doc doc-base
  975. Recommended packages:
  976.  python-dev-all
  977. The following NEW packages will be installed:
  978.  build-essential dpkg-dev fakeroot libalgorithm-diff-perl
  979.  libalgorithm-diff-xs-perl libalgorithm-merge-perl libdpkg-perl libfakeroot
  980.  libfile-fcntllock-perl libpython-dev libpython2.7 libpython2.7-dev
  981.  libtimedate-perl python-cffi python-chardet python-colorama
  982.  python-cryptography python-dev python-distlib python-html5lib
  983.  python-ndg-httpsclient python-openssl python-pip python-pkg-resources
  984.  python-ply python-pyasn1 python-pycparser python-requests python-setuptools
  985.  python-support python-urllib3 python-wheel python2.7-dev
  986. 0 upgraded, 33 newly installed, 0 to remove and 9 not upgraded.
  987. Need to get 24.5 MB of archives.
  988. After this operation, 46.7 MB of additional disk space will be used.
  989. Get:1 http://deb.debian.org/debian/ jessie/main libpython2.7 amd64 2.7.9-2+deb8u1 [1081 kB]
  990. Get:2 http://deb.debian.org/debian/ jessie/main libpython2.7-dev amd64 2.7.9-2+deb8u1 [18.6 MB]
  991. Get:3 http://deb.debian.org/debian/ jessie/main python-support all 1.0.15 [33.6 kB]
  992. Get:4 http://deb.debian.org/debian/ jessie/main libtimedate-perl all 2.3000-2 [42.2 kB]
  993. Get:5 http://deb.debian.org/debian/ jessie/main libdpkg-perl all 1.17.27 [1075 kB]
  994. Get:6 http://deb.debian.org/debian/ jessie/main dpkg-dev all 1.17.27 [1548 kB]
  995. Get:7 http://deb.debian.org/debian/ jessie/main build-essential amd64 11.7 [7114 B]
  996. Get:8 http://deb.debian.org/debian/ jessie/main libfakeroot amd64 1.20.2-1 [44.7 kB]
  997. Get:9 http://deb.debian.org/debian/ jessie/main fakeroot amd64 1.20.2-1 [84.7 kB]
  998. Get:10 http://deb.debian.org/debian/ jessie/main libalgorithm-diff-perl all 1.19.02-3 [51.7 kB]
  999. Get:11 http://deb.debian.org/debian/ jessie/main libalgorithm-diff-xs-perl amd64 0.04-3+b1 [12.2 kB]
  1000. Get:12 http://deb.debian.org/debian/ jessie/main libalgorithm-merge-perl all 0.08-2 [13.5 kB]
  1001. Get:13 http://deb.debian.org/debian/ jessie/main libfile-fcntllock-perl amd64 0.22-1+b1 [36.4 kB]
  1002. Get:14 http://deb.debian.org/debian/ jessie/main libpython-dev amd64 2.7.9-1 [19.6 kB]
  1003. Get:15 http://deb.debian.org/debian/ jessie/main python-ply all 3.4-5 [62.9 kB]
  1004. Get:16 http://deb.debian.org/debian/ jessie/main python-pycparser all 2.10+dfsg-3 [58.8 kB]
  1005. Get:17 http://deb.debian.org/debian/ jessie/main python-cffi amd64 0.8.6-1 [67.2 kB]
  1006. Get:18 http://deb.debian.org/debian/ jessie/main python-pkg-resources all 5.5.1-1 [64.4 kB]
  1007. Get:19 http://deb.debian.org/debian/ jessie/main python-chardet all 2.3.0-1 [96.2 kB]
  1008. Get:20 http://deb.debian.org/debian/ jessie/main python-colorama all 0.3.2-1 [20.3 kB]
  1009. Get:21 http://deb.debian.org/debian/ jessie/main python-cryptography amd64 0.6.1-1+deb8u1 [164 kB]
  1010. Get:22 http://deb.debian.org/debian/ jessie/main python2.7-dev amd64 2.7.9-2+deb8u1 [290 kB]
  1011. Get:23 http://deb.debian.org/debian/ jessie/main python-dev amd64 2.7.9-1 [1182 B]
  1012. Get:24 http://deb.debian.org/debian/ jessie/main python-distlib all 0.1.9-1 [113 kB]
  1013. Get:25 http://deb.debian.org/debian/ jessie/main python-html5lib all 0.999-3 [84.0 kB]
  1014. Get:26 http://deb.debian.org/debian/ jessie/main python-openssl all 0.14-1 [81.1 kB]
  1015. Get:27 http://deb.debian.org/debian/ jessie/main python-ndg-httpsclient all 0.3.2-1 [20.5 kB]
  1016. Get:28 http://deb.debian.org/debian/ jessie/main python-urllib3 all 1.9.1-3 [55.4 kB]
  1017. Get:29 http://deb.debian.org/debian/ jessie/main python-requests all 2.4.3-6 [204 kB]
  1018. Get:30 http://deb.debian.org/debian/ jessie/main python-setuptools all 5.5.1-1 [242 kB]
  1019. Get:31 http://deb.debian.org/debian/ jessie/main python-pip all 1.5.6-5 [114 kB]
  1020. Get:32 http://deb.debian.org/debian/ jessie/main python-pyasn1 all 0.1.7-1 [49.3 kB]
  1021. Get:33 http://deb.debian.org/debian/ jessie/main python-wheel all 0.24.0-1 [47.5 kB]
  1022. debconf: delaying package configuration, since apt-utils is not installed
  1023. Fetched 24.5 MB in 10s (2296 kB/s)
  1024. Selecting previously unselected package libpython2.7:amd64.
  1025. (Reading database ... 21636 files and directories currently installed.)
  1026. Preparing to unpack .../libpython2.7_2.7.9-2+deb8u1_amd64.deb ...
  1027. Unpacking libpython2.7:amd64 (2.7.9-2+deb8u1) ...
  1028. Selecting previously unselected package libpython2.7-dev:amd64.
  1029. Preparing to unpack .../libpython2.7-dev_2.7.9-2+deb8u1_amd64.deb ...
  1030. Unpacking libpython2.7-dev:amd64 (2.7.9-2+deb8u1) ...
  1031. Selecting previously unselected package python-support.
  1032. Preparing to unpack .../python-support_1.0.15_all.deb ...
  1033. Unpacking python-support (1.0.15) ...
  1034. Selecting previously unselected package libtimedate-perl.
  1035. Preparing to unpack .../libtimedate-perl_2.3000-2_all.deb ...
  1036. Unpacking libtimedate-perl (2.3000-2) ...
  1037. Selecting previously unselected package libdpkg-perl.
  1038. Preparing to unpack .../libdpkg-perl_1.17.27_all.deb ...
  1039. Unpacking libdpkg-perl (1.17.27) ...
  1040. Selecting previously unselected package dpkg-dev.
  1041. Preparing to unpack .../dpkg-dev_1.17.27_all.deb ...
  1042. Unpacking dpkg-dev (1.17.27) ...
  1043. Selecting previously unselected package build-essential.
  1044. Preparing to unpack .../build-essential_11.7_amd64.deb ...
  1045. Unpacking build-essential (11.7) ...
  1046. Selecting previously unselected package libfakeroot:amd64.
  1047. Preparing to unpack .../libfakeroot_1.20.2-1_amd64.deb ...
  1048. Unpacking libfakeroot:amd64 (1.20.2-1) ...
  1049. Selecting previously unselected package fakeroot.
  1050. Preparing to unpack .../fakeroot_1.20.2-1_amd64.deb ...
  1051. Unpacking fakeroot (1.20.2-1) ...
  1052. Selecting previously unselected package libalgorithm-diff-perl.
  1053. Preparing to unpack .../libalgorithm-diff-perl_1.19.02-3_all.deb ...
  1054. Unpacking libalgorithm-diff-perl (1.19.02-3) ...
  1055. Selecting previously unselected package libalgorithm-diff-xs-perl.
  1056. Preparing to unpack .../libalgorithm-diff-xs-perl_0.04-3+b1_amd64.deb ...
  1057. Unpacking libalgorithm-diff-xs-perl (0.04-3+b1) ...
  1058. Selecting previously unselected package libalgorithm-merge-perl.
  1059. Preparing to unpack .../libalgorithm-merge-perl_0.08-2_all.deb ...
  1060. Unpacking libalgorithm-merge-perl (0.08-2) ...
  1061. Selecting previously unselected package libfile-fcntllock-perl.
  1062. Preparing to unpack .../libfile-fcntllock-perl_0.22-1+b1_amd64.deb ...
  1063. Unpacking libfile-fcntllock-perl (0.22-1+b1) ...
  1064. Selecting previously unselected package libpython-dev:amd64.
  1065. Preparing to unpack .../libpython-dev_2.7.9-1_amd64.deb ...
  1066. Unpacking libpython-dev:amd64 (2.7.9-1) ...
  1067. Selecting previously unselected package python-ply.
  1068. Preparing to unpack .../python-ply_3.4-5_all.deb ...
  1069. Unpacking python-ply (3.4-5) ...
  1070. Selecting previously unselected package python-pycparser.
  1071. Preparing to unpack .../python-pycparser_2.10+dfsg-3_all.deb ...
  1072. Unpacking python-pycparser (2.10+dfsg-3) ...
  1073. Selecting previously unselected package python-cffi.
  1074. Preparing to unpack .../python-cffi_0.8.6-1_amd64.deb ...
  1075. Unpacking python-cffi (0.8.6-1) ...
  1076. Selecting previously unselected package python-pkg-resources.
  1077. Preparing to unpack .../python-pkg-resources_5.5.1-1_all.deb ...
  1078. Unpacking python-pkg-resources (5.5.1-1) ...
  1079. Selecting previously unselected package python-chardet.
  1080. Preparing to unpack .../python-chardet_2.3.0-1_all.deb ...
  1081. Unpacking python-chardet (2.3.0-1) ...
  1082. Selecting previously unselected package python-colorama.
  1083. Preparing to unpack .../python-colorama_0.3.2-1_all.deb ...
  1084. Unpacking python-colorama (0.3.2-1) ...
  1085. Selecting previously unselected package python-cryptography.
  1086. Preparing to unpack .../python-cryptography_0.6.1-1+deb8u1_amd64.deb ...
  1087. Unpacking python-cryptography (0.6.1-1+deb8u1) ...
  1088. Selecting previously unselected package python2.7-dev.
  1089. Preparing to unpack .../python2.7-dev_2.7.9-2+deb8u1_amd64.deb ...
  1090. Unpacking python2.7-dev (2.7.9-2+deb8u1) ...
  1091. Selecting previously unselected package python-dev.
  1092. Preparing to unpack .../python-dev_2.7.9-1_amd64.deb ...
  1093. Unpacking python-dev (2.7.9-1) ...
  1094. Selecting previously unselected package python-distlib.
  1095. Preparing to unpack .../python-distlib_0.1.9-1_all.deb ...
  1096. Unpacking python-distlib (0.1.9-1) ...
  1097. Selecting previously unselected package python-html5lib.
  1098. Preparing to unpack .../python-html5lib_0.999-3_all.deb ...
  1099. Unpacking python-html5lib (0.999-3) ...
  1100. Selecting previously unselected package python-openssl.
  1101. Preparing to unpack .../python-openssl_0.14-1_all.deb ...
  1102. Unpacking python-openssl (0.14-1) ...
  1103. Selecting previously unselected package python-ndg-httpsclient.
  1104. Preparing to unpack .../python-ndg-httpsclient_0.3.2-1_all.deb ...
  1105. Unpacking python-ndg-httpsclient (0.3.2-1) ...
  1106. Selecting previously unselected package python-urllib3.
  1107. Preparing to unpack .../python-urllib3_1.9.1-3_all.deb ...
  1108. Unpacking python-urllib3 (1.9.1-3) ...
  1109. Selecting previously unselected package python-requests.
  1110. Preparing to unpack .../python-requests_2.4.3-6_all.deb ...
  1111. Unpacking python-requests (2.4.3-6) ...
  1112. Selecting previously unselected package python-setuptools.
  1113. Preparing to unpack .../python-setuptools_5.5.1-1_all.deb ...
  1114. Unpacking python-setuptools (5.5.1-1) ...
  1115. Selecting previously unselected package python-pip.
  1116. Preparing to unpack .../python-pip_1.5.6-5_all.deb ...
  1117. Unpacking python-pip (1.5.6-5) ...
  1118. Selecting previously unselected package python-pyasn1.
  1119. Preparing to unpack .../python-pyasn1_0.1.7-1_all.deb ...
  1120. Unpacking python-pyasn1 (0.1.7-1) ...
  1121. Selecting previously unselected package python-wheel.
  1122. Preparing to unpack .../python-wheel_0.24.0-1_all.deb ...
  1123. Unpacking python-wheel (0.24.0-1) ...
  1124. Setting up libpython2.7:amd64 (2.7.9-2+deb8u1) ...
  1125. Setting up libpython2.7-dev:amd64 (2.7.9-2+deb8u1) ...
  1126. Setting up python-support (1.0.15) ...
  1127. Setting up libtimedate-perl (2.3000-2) ...
  1128. Setting up libdpkg-perl (1.17.27) ...
  1129. Setting up dpkg-dev (1.17.27) ...
  1130. Setting up build-essential (11.7) ...
  1131. Setting up libfakeroot:amd64 (1.20.2-1) ...
  1132. Setting up fakeroot (1.20.2-1) ...
  1133. update-alternatives: using /usr/bin/fakeroot-sysv to provide /usr/bin/fakeroot (fakeroot) in auto mode
  1134. Setting up libalgorithm-diff-perl (1.19.02-3) ...
  1135. Setting up libalgorithm-diff-xs-perl (0.04-3+b1) ...
  1136. Setting up libalgorithm-merge-perl (0.08-2) ...
  1137. Setting up libfile-fcntllock-perl (0.22-1+b1) ...
  1138. Setting up libpython-dev:amd64 (2.7.9-1) ...
  1139. Setting up python-ply (3.4-5) ...
  1140. Setting up python-pycparser (2.10+dfsg-3) ...
  1141. Setting up python-cffi (0.8.6-1) ...
  1142. Setting up python-pkg-resources (5.5.1-1) ...
  1143. Setting up python-chardet (2.3.0-1) ...
  1144. Setting up python-colorama (0.3.2-1) ...
  1145. Setting up python-cryptography (0.6.1-1+deb8u1) ...
  1146. Setting up python2.7-dev (2.7.9-2+deb8u1) ...
  1147. Setting up python-dev (2.7.9-1) ...
  1148. Setting up python-distlib (0.1.9-1) ...
  1149. Setting up python-html5lib (0.999-3) ...
  1150. Setting up python-openssl (0.14-1) ...
  1151. Setting up python-ndg-httpsclient (0.3.2-1) ...
  1152. Setting up python-urllib3 (1.9.1-3) ...
  1153. Setting up python-requests (2.4.3-6) ...
  1154. Setting up python-setuptools (5.5.1-1) ...
  1155. Setting up python-pip (1.5.6-5) ...
  1156. Setting up python-pyasn1 (0.1.7-1) ...
  1157. Setting up python-wheel (0.24.0-1) ...
  1158. Processing triggers for libc-bin (2.19-18+deb8u10) ...
  1159. Processing triggers for python-support (1.0.15) ...
  1160. Removing intermediate container cf45027c10fa
  1161. ---> 7f9d552f0b57
  1162. Step 5/10 : RUN mkdir /code
  1163. ---> Running in cfd985f943da
  1164. Removing intermediate container cfd985f943da
  1165. ---> a20bab9e0e96
  1166. Step 6/10 : ADD ./ /code/
  1167. ---> 34c56a1b0d96
  1168. Step 7/10 : WORKDIR /code
  1169. Removing intermediate container 2eae2aef0e12
  1170. ---> e566ed902aef
  1171. Step 8/10 : RUN pip install -U cffi service_identity
  1172. ---> Running in 017ef6c81ba3
  1173. Collecting cffi
  1174.  Downloading cffi-1.11.5-cp27-cp27mu-manylinux1_x86_64.whl (407kB)
  1175. Collecting service_identity
  1176.  Downloading service_identity-17.0.0-py2.py3-none-any.whl
  1177. Collecting pycparser (from cffi)
  1178.  Downloading pycparser-2.18.tar.gz (245kB)
  1179. Collecting pyopenssl>=0.12 (from service_identity)
  1180.  Downloading pyOpenSSL-17.5.0-py2.py3-none-any.whl (53kB)
  1181. Collecting pyasn1 (from service_identity)
  1182.  Downloading pyasn1-0.4.2-py2.py3-none-any.whl (71kB)
  1183. Collecting attrs (from service_identity)
  1184.  Downloading attrs-17.4.0-py2.py3-none-any.whl
  1185. Collecting pyasn1-modules (from service_identity)
  1186.  Downloading pyasn1_modules-0.2.1-py2.py3-none-any.whl (60kB)
  1187. Collecting cryptography>=2.1.4 (from pyopenssl>=0.12->service_identity)
  1188.  Downloading cryptography-2.2.2-cp27-cp27mu-manylinux1_x86_64.whl (2.2MB)
  1189. Collecting six>=1.5.2 (from pyopenssl>=0.12->service_identity)
  1190.  Downloading six-1.11.0-py2.py3-none-any.whl
  1191. Collecting enum34; python_version < "3" (from cryptography>=2.1.4->pyopenssl>=0.12->service_identity)
  1192.  Downloading enum34-1.1.6-py2-none-any.whl
  1193. Collecting idna>=2.1 (from cryptography>=2.1.4->pyopenssl>=0.12->service_identity)
  1194.  Downloading idna-2.6-py2.py3-none-any.whl (56kB)
  1195. Collecting asn1crypto>=0.21.0 (from cryptography>=2.1.4->pyopenssl>=0.12->service_identity)
  1196.  Downloading asn1crypto-0.24.0-py2.py3-none-any.whl (101kB)
  1197. Collecting ipaddress; python_version < "3" (from cryptography>=2.1.4->pyopenssl>=0.12->service_identity)
  1198.  Downloading ipaddress-1.0.19.tar.gz
  1199. Building wheels for collected packages: pycparser, ipaddress
  1200.  Running setup.py bdist_wheel for pycparser: started
  1201.  Running setup.py bdist_wheel for pycparser: finished with status 'done'
  1202.  Stored in directory: /root/.cache/pip/wheels/95/14/9a/5e7b9024459d2a6600aaa64e0ba485325aff7a9ac7489db1b6
  1203.  Running setup.py bdist_wheel for ipaddress: started
  1204.  Running setup.py bdist_wheel for ipaddress: finished with status 'done'
  1205.  Stored in directory: /root/.cache/pip/wheels/d7/6b/69/666188e8101897abb2e115d408d139a372bdf6bfa7abb5aef5
  1206. Successfully built pycparser ipaddress
  1207. Installing collected packages: pycparser, cffi, enum34, idna, asn1crypto, six, ipaddress, cryptography, pyopenssl, pyasn1, attrs, pyasn1-modules, service-identity
  1208. Successfully installed asn1crypto-0.24.0 attrs-17.4.0 cffi-1.11.5 cryptography-2.2.2 enum34-1.1.6 idna-2.6 ipaddress-1.0.19 pyasn1-0.4.2 pyasn1-modules-0.2.1 pycparser-2.18 pyopenssl-17.5.0 service-identity-17.0.0 six-1.11.0
  1209. Removing intermediate container 017ef6c81ba3
  1210. ---> 1ee8d5da0915
  1211. Step 9/10 : RUN pip install -r requirements/dev.txt
  1212. ---> Running in 7778b000743a
  1213. Collecting asgi-redis==1.4.3 (from -r requirements/common.txt (line 1))
  1214.  Downloading asgi_redis-1.4.3-py2.py3-none-any.whl
  1215. Collecting commonmark==0.5.4 (from -r requirements/common.txt (line 2))
  1216.  Downloading CommonMark-0.5.4.tar.gz (120kB)
  1217. Collecting django==1.10.2 (from -r requirements/common.txt (line 3))
  1218.  Downloading Django-1.10.2-py2.py3-none-any.whl (6.8MB)
  1219. Collecting django-import-export==0.5.1 (from -r requirements/common.txt (line 4))
  1220.  Downloading django-import-export-0.5.1.tar.gz
  1221. Collecting djangorestframework==3.5.2 (from -r requirements/common.txt (line 5))
  1222.  Downloading djangorestframework-3.5.2-py2.py3-none-any.whl (709kB)
  1223. Collecting djangorestframework-expiring-authtoken==0.1.4 (from -r requirements/common.txt (line 6))
  1224.  Downloading djangorestframework_expiring_authtoken-0.1.4-py2.py3-none-any.whl
  1225. Collecting django-cors-headers==1.3.1 (from -r requirements/common.txt (line 7))
  1226.  Downloading django_cors_headers-1.3.1-py2.py3-none-any.whl
  1227. Collecting django-rest-auth[with_social]==0.9.2 (from -r requirements/common.txt (line 8))
  1228.  Downloading django-rest-auth-0.9.2.tar.gz
  1229. Collecting django-ses==0.8.5 (from -r requirements/common.txt (line 9))
  1230.  Downloading django_ses-0.8.5-py2.py3-none-any.whl
  1231. Collecting drfdocs==0.0.11 (from -r requirements/common.txt (line 10))
  1232.  Downloading drfdocs-0.0.11.tar.gz (771kB)
  1233. Collecting pika==0.10.0 (from -r requirements/common.txt (line 11))
  1234.  Downloading pika-0.10.0-py2.py3-none-any.whl (92kB)
  1235. Collecting pickleshare==0.7.4 (from -r requirements/common.txt (line 12))
  1236.  Downloading pickleshare-0.7.4-py2.py3-none-any.whl
  1237. Collecting Pillow==3.4.2 (from -r requirements/common.txt (line 13))
  1238.  Downloading Pillow-3.4.2-cp27-cp27mu-manylinux1_x86_64.whl (5.6MB)
  1239. Collecting psycopg2==2.7.3.2 (from -r requirements/common.txt (line 14))
  1240.  Downloading psycopg2-2.7.3.2-cp27-cp27mu-manylinux1_x86_64.whl (2.7MB)
  1241. Collecting PyYaml==3.12 (from -r requirements/common.txt (line 15))
  1242.  Downloading PyYAML-3.12.tar.gz (253kB)
  1243. Collecting proc==0.10.1 (from -r requirements/common.txt (line 16))
  1244.  Downloading proc-0.10.1-py2.py3-none-any.whl (40kB)
  1245. Collecting rstr==2.2.5 (from -r requirements/common.txt (line 17))
  1246.  Downloading rstr-2.2.5.tar.gz
  1247. Collecting autopep8==1.2.4 (from -r requirements/dev.txt (line 3))
  1248.  Downloading autopep8-1.2.4-py2.py3-none-any.whl (41kB)
  1249. Collecting coverage==4.2 (from -r requirements/dev.txt (line 4))
  1250.  Downloading coverage-4.2.tar.gz (359kB)
  1251. Collecting coveralls==1.1 (from -r requirements/dev.txt (line 5))
  1252.  Downloading coveralls-1.1-py2.py3-none-any.whl
  1253. Collecting django-autofixture==0.12.1 (from -r requirements/dev.txt (line 6))
  1254.  Downloading django-autofixture-0.12.1.tar.gz
  1255. Collecting django-debug-toolbar==1.8 (from -r requirements/dev.txt (line 7))
  1256.  Downloading django_debug_toolbar-1.8-py2.py3-none-any.whl (205kB)
  1257. Collecting django-extensions==1.7.8 (from -r requirements/dev.txt (line 8))
  1258.  Downloading django_extensions-1.7.8-py2.py3-none-any.whl (202kB)
  1259. Collecting django-silk==1.0.0 (from -r requirements/dev.txt (line 9))
  1260.  Downloading django_silk-1.0.0-py2.py3-none-any.whl (1.4MB)
  1261. Collecting django-spaghetti-and-meatballs==0.2.2 (from -r requirements/dev.txt (line 10))
  1262.  Downloading django-spaghetti-and-meatballs-0.2.2.tar.gz
  1263. Collecting flake8==3.0.4 (from -r requirements/dev.txt (line 11))
  1264.  Downloading flake8-3.0.4-py2.py3-none-any.whl (64kB)
  1265. Collecting pytest-cov==2.4.0 (from -r requirements/dev.txt (line 12))
  1266.  Downloading pytest_cov-2.4.0-py2.py3-none-any.whl
  1267. Collecting pytest==3.0.3 (from -r requirements/dev.txt (line 13))
  1268.  Downloading pytest-3.0.3-py2.py3-none-any.whl (169kB)
  1269. Collecting recommonmark==0.4.0 (from -r requirements/dev.txt (line 14))
  1270.  Downloading recommonmark-0.4.0-py2.py3-none-any.whl
  1271. Collecting sphinx==1.4.8 (from -r requirements/dev.txt (line 15))
  1272.  Downloading Sphinx-1.4.8-py2.py3-none-any.whl (1.6MB)
  1273. Collecting sphinx-autobuild==0.6.0 (from -r requirements/dev.txt (line 16))
  1274.  Downloading sphinx_autobuild-0.6.0-py2-none-any.whl
  1275. Collecting sphinx-rtd-theme==0.1.9 (from -r requirements/dev.txt (line 17))
  1276.  Downloading sphinx_rtd_theme-0.1.9-py2-none-any.whl (693kB)
  1277. Collecting pytest-django==3.1.2 (from -r requirements/dev.txt (line 18))
  1278.  Downloading pytest_django-3.1.2-py2.py3-none-any.whl
  1279. Collecting Faker==0.7.7 (from -r requirements/dev.txt (line 19))
  1280.  Downloading Faker-0.7.7-py2.py3-none-any.whl (562kB)
  1281. Collecting asgiref~=1.1.2 (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  1282.  Downloading asgiref-1.1.2-py2.py3-none-any.whl
  1283. Requirement already satisfied: six in /usr/local/lib/python2.7/site-packages (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  1284. Collecting msgpack-python (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  1285.  Downloading msgpack-python-0.5.6.tar.gz (138kB)
  1286. Collecting redis~=2.10.6 (from asgi-redis==1.4.3->-r requirements/common.txt (line 1))
  1287.  Downloading redis-2.10.6-py2.py3-none-any.whl (64kB)
  1288. Collecting tablib (from django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1289.  Downloading tablib-0.12.1.tar.gz (63kB)
  1290. Collecting diff-match-patch (from django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1291.  Downloading diff-match-patch-20121119.tar.gz (54kB)
  1292. Collecting django-allauth>=0.25.0 (from django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  1293.  Downloading django-allauth-0.35.0.tar.gz (482kB)
  1294. Collecting pytz>=2016.10 (from django-ses==0.8.5->-r requirements/common.txt (line 9))
  1295.  Downloading pytz-2018.4-py2.py3-none-any.whl (510kB)
  1296. Collecting future>=0.16.0 (from django-ses==0.8.5->-r requirements/common.txt (line 9))
  1297.  Downloading future-0.16.0.tar.gz (824kB)
  1298. Collecting boto>=2.31.0 (from django-ses==0.8.5->-r requirements/common.txt (line 9))
  1299.  Downloading boto-2.48.0-py2.py3-none-any.whl (1.4MB)
  1300. Collecting pathlib2; python_version in "2.6 2.7 3.2 3.3" (from pickleshare==0.7.4->-r requirements/common.txt (line 12))
  1301.  Downloading pathlib2-2.3.0-py2.py3-none-any.whl
  1302. Collecting property-manager>=1.2 (from proc==0.10.1->-r requirements/common.txt (line 16))
  1303.  Downloading property_manager-2.2-py2.py3-none-any.whl
  1304. Collecting executor>=10.0 (from proc==0.10.1->-r requirements/common.txt (line 16))
  1305.  Downloading executor-19.1-py2.py3-none-any.whl (79kB)
  1306. Collecting humanfriendly>=1.35 (from proc==0.10.1->-r requirements/common.txt (line 16))
  1307.  Downloading humanfriendly-4.10-py2.py3-none-any.whl (68kB)
  1308. Collecting coloredlogs>=5.0 (from proc==0.10.1->-r requirements/common.txt (line 16))
  1309.  Downloading coloredlogs-9.0-py2.py3-none-any.whl (43kB)
  1310. Collecting pep8>=1.5.7 (from autopep8==1.2.4->-r requirements/dev.txt (line 3))
  1311.  Downloading pep8-1.7.1-py2.py3-none-any.whl (41kB)
  1312. Collecting requests>=1.0.0 (from coveralls==1.1->-r requirements/dev.txt (line 5))
  1313.  Downloading requests-2.18.4-py2.py3-none-any.whl (88kB)
  1314. Collecting docopt>=0.6.1 (from coveralls==1.1->-r requirements/dev.txt (line 5))
  1315.  Downloading docopt-0.6.2.tar.gz
  1316. Requirement already satisfied: setuptools in /usr/local/lib/python2.7/site-packages (from django-autofixture==0.12.1->-r requirements/dev.txt (line 6))
  1317. Collecting sqlparse>=0.2.0 (from django-debug-toolbar==1.8->-r requirements/dev.txt (line 7))
  1318.  Downloading sqlparse-0.2.4-py2.py3-none-any.whl
  1319. Collecting Jinja2 (from django-silk==1.0.0->-r requirements/dev.txt (line 9))
  1320.  Downloading Jinja2-2.10-py2.py3-none-any.whl (126kB)
  1321. Collecting python-dateutil (from django-silk==1.0.0->-r requirements/dev.txt (line 9))
  1322.  Downloading python_dateutil-2.7.2-py2.py3-none-any.whl (212kB)
  1323. Collecting Pygments (from django-silk==1.0.0->-r requirements/dev.txt (line 9))
  1324.  Downloading Pygments-2.2.0-py2.py3-none-any.whl (841kB)
  1325. Requirement already satisfied: enum34; python_version < "3.4" in /usr/local/lib/python2.7/site-packages (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  1326. Collecting configparser; python_version < "3.2" (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  1327.  Downloading configparser-3.5.0.tar.gz
  1328. Collecting mccabe<0.6.0,>=0.5.0 (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  1329.  Downloading mccabe-0.5.3-py2.py3-none-any.whl
  1330. Collecting pycodestyle<2.1.0,>=2.0.0 (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  1331.  Downloading pycodestyle-2.0.0-py2.py3-none-any.whl (42kB)
  1332. Collecting pyflakes!=1.2.0,!=1.2.1,!=1.2.2,<1.3.0,>=0.8.1 (from flake8==3.0.4->-r requirements/dev.txt (line 11))
  1333.  Downloading pyflakes-1.2.3-py2.py3-none-any.whl (209kB)
  1334. Collecting py>=1.4.29 (from pytest==3.0.3->-r requirements/dev.txt (line 13))
  1335.  Downloading py-1.5.3-py2.py3-none-any.whl (84kB)
  1336. Collecting docutils>=0.11 (from recommonmark==0.4.0->-r requirements/dev.txt (line 14))
  1337.  Downloading docutils-0.14-py2-none-any.whl (543kB)
  1338. Collecting babel!=2.0,>=1.3 (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  1339.  Downloading Babel-2.5.3-py2.py3-none-any.whl (6.8MB)
  1340. Collecting imagesize (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  1341.  Downloading imagesize-1.0.0-py2.py3-none-any.whl
  1342. Collecting alabaster<0.8,>=0.7 (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  1343.  Downloading alabaster-0.7.10-py2.py3-none-any.whl
  1344. Collecting snowballstemmer>=1.1 (from sphinx==1.4.8->-r requirements/dev.txt (line 15))
  1345.  Downloading snowballstemmer-1.2.1-py2.py3-none-any.whl (64kB)
  1346. Collecting port-for==0.3.1 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1347.  Downloading port-for-0.3.1.tar.gz
  1348. Collecting tornado>=3.2 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1349.  Downloading tornado-5.0.2.tar.gz (506kB)
  1350. Collecting pathtools>=0.1.2 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1351.  Downloading pathtools-0.1.2.tar.gz
  1352. Collecting livereload>=2.3.0 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1353.  Downloading livereload-2.5.1-py2-none-any.whl
  1354. Collecting argh>=0.24.1 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1355.  Downloading argh-0.26.2-py2.py3-none-any.whl
  1356. Collecting watchdog>=0.7.1 (from sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1357.  Downloading watchdog-0.8.3.tar.gz (83kB)
  1358. Requirement already satisfied: ipaddress; python_version == "2.7" in /usr/local/lib/python2.7/site-packages (from Faker==0.7.7->-r requirements/dev.txt (line 19))
  1359. Collecting odfpy (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1360.  Downloading odfpy-1.3.6.tar.gz (691kB)
  1361. Collecting openpyxl (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1362.  Downloading openpyxl-2.5.2.tar.gz (170kB)
  1363. Collecting unicodecsv (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1364.  Downloading unicodecsv-0.14.1.tar.gz
  1365. Collecting xlrd (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1366.  Downloading xlrd-1.1.0-py2.py3-none-any.whl (108kB)
  1367. Collecting xlwt (from tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1368.  Downloading xlwt-1.3.0-py2.py3-none-any.whl (99kB)
  1369. Collecting python-openid>=2.2.5 (from django-allauth>=0.25.0->django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  1370.  Downloading python-openid-2.2.5.tar.gz (301kB)
  1371. Collecting requests-oauthlib>=0.3.0 (from django-allauth>=0.25.0->django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  1372.  Downloading requests_oauthlib-0.8.0-py2.py3-none-any.whl
  1373. Collecting scandir; python_version < "3.5" (from pathlib2; python_version in "2.6 2.7 3.2 3.3"->pickleshare==0.7.4->-r requirements/common.txt (line 12))
  1374.  Downloading scandir-1.7.tar.gz
  1375. Collecting verboselogs>=1.1 (from property-manager>=1.2->proc==0.10.1->-r requirements/common.txt (line 16))
  1376.  Downloading verboselogs-1.7-py2.py3-none-any.whl
  1377. Collecting fasteners>=0.14.1 (from executor>=10.0->proc==0.10.1->-r requirements/common.txt (line 16))
  1378.  Downloading fasteners-0.14.1-py2.py3-none-any.whl
  1379. Collecting monotonic; python_version == "2.6" or python_version == "2.7" or python_version == "3.0" or python_version == "3.1" or python_version == "3.2" (from humanfriendly>=1.35->proc==0.10.1->-r requirements/common.txt (line 16))
  1380.  Downloading monotonic-1.4-py2.py3-none-any.whl
  1381. Requirement already satisfied: idna<2.7,>=2.5 in /usr/local/lib/python2.7/site-packages (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  1382. Collecting urllib3<1.23,>=1.21.1 (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  1383.  Downloading urllib3-1.22-py2.py3-none-any.whl (132kB)
  1384. Collecting certifi>=2017.4.17 (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  1385.  Downloading certifi-2018.1.18-py2.py3-none-any.whl (151kB)
  1386. Collecting chardet<3.1.0,>=3.0.2 (from requests>=1.0.0->coveralls==1.1->-r requirements/dev.txt (line 5))
  1387.  Downloading chardet-3.0.4-py2.py3-none-any.whl (133kB)
  1388. Collecting MarkupSafe>=0.23 (from Jinja2->django-silk==1.0.0->-r requirements/dev.txt (line 9))
  1389.  Downloading MarkupSafe-1.0.tar.gz
  1390. Collecting futures (from tornado>=3.2->sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1391.  Downloading futures-3.2.0-py2-none-any.whl
  1392. Collecting singledispatch (from tornado>=3.2->sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1393.  Downloading singledispatch-3.4.0.3-py2.py3-none-any.whl
  1394. Collecting backports_abc>=0.4 (from tornado>=3.2->sphinx-autobuild==0.6.0->-r requirements/dev.txt (line 16))
  1395.  Downloading backports_abc-0.5-py2.py3-none-any.whl
  1396. Collecting jdcal (from openpyxl->tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1397.  Downloading jdcal-1.3.tar.gz
  1398. Collecting et_xmlfile (from openpyxl->tablib->django-import-export==0.5.1->-r requirements/common.txt (line 4))
  1399.  Downloading et_xmlfile-1.0.1.tar.gz
  1400. Collecting oauthlib>=0.6.2 (from requests-oauthlib>=0.3.0->django-allauth>=0.25.0->django-rest-auth[with_social]==0.9.2->-r requirements/common.txt (line 8))
  1401.  Downloading oauthlib-2.0.7-py2.py3-none-any.whl (124kB)
  1402. Building wheels for collected packages: commonmark, django-import-export, django-rest-auth, drfdocs, PyYaml, rstr, coverage, django-autofixture, django-spaghetti-and-meatballs, msgpack-python, tablib, diff-match-patch, django-allauth, future, docopt, configparser, port-for, tornado, pathtools, watchdog, odfpy, openpyxl, unicodecsv, python-openid, scandir, MarkupSafe, jdcal, et-xmlfile
  1403.  Running setup.py bdist_wheel for commonmark: started
  1404.  Running setup.py bdist_wheel for commonmark: finished with status 'done'
  1405.  Stored in directory: /root/.cache/pip/wheels/fd/3a/ea/9ead7944d8ba3771888487ca4f6ef39bcde9fd4e986c32f442
  1406.  Running setup.py bdist_wheel for django-import-export: started
  1407.  Running setup.py bdist_wheel for django-import-export: finished with status 'done'
  1408.  Stored in directory: /root/.cache/pip/wheels/15/89/cf/54f0587107f6f7a7e04c9b8fc1d562f345628951162d97ae5f
  1409.  Running setup.py bdist_wheel for django-rest-auth: started
  1410.  Running setup.py bdist_wheel for django-rest-auth: finished with status 'done'
  1411.  Stored in directory: /root/.cache/pip/wheels/32/34/e7/69c0540917a365649841c84d2c63781f6e551c5f29a52486bb
  1412.  Running setup.py bdist_wheel for drfdocs: started
  1413.  Running setup.py bdist_wheel for drfdocs: finished with status 'done'
  1414.  Stored in directory: /root/.cache/pip/wheels/fa/f2/83/6f202415d7f150075200e8d197fc62c406215b53d4d9ad9892
  1415.  Running setup.py bdist_wheel for PyYaml: started
  1416.  Running setup.py bdist_wheel for PyYaml: finished with status 'done'
  1417.  Stored in directory: /root/.cache/pip/wheels/2c/f7/79/13f3a12cd723892437c0cfbde1230ab4d82947ff7b3839a4fc
  1418.  Running setup.py bdist_wheel for rstr: started
  1419.  Running setup.py bdist_wheel for rstr: finished with status 'done'
  1420.  Stored in directory: /root/.cache/pip/wheels/2b/f4/7e/a373ab0828b20424162c58773611710ff9af25f453e2de156f
  1421.  Running setup.py bdist_wheel for coverage: started
  1422.  Running setup.py bdist_wheel for coverage: finished with status 'done'
  1423.  Stored in directory: /root/.cache/pip/wheels/6f/54/a5/e7629c41b30061b18f0ccbe4be643ed4cf5329f7b2459cf9ae
  1424.  Running setup.py bdist_wheel for django-autofixture: started
  1425.  Running setup.py bdist_wheel for django-autofixture: finished with status 'done'
  1426.  Stored in directory: /root/.cache/pip/wheels/e6/32/70/7b6b2a8ed2d6bee4a29aa28fde90544ca315383a256ec43c3e
  1427.  Running setup.py bdist_wheel for django-spaghetti-and-meatballs: started
  1428.  Running setup.py bdist_wheel for django-spaghetti-and-meatballs: finished with status 'done'
  1429.  Stored in directory: /root/.cache/pip/wheels/fd/4a/1d/0ea63a42bae592e55ce02f50295f4a3045aefa5d1feb82bf46
  1430.  Running setup.py bdist_wheel for msgpack-python: started
  1431.  Running setup.py bdist_wheel for msgpack-python: finished with status 'done'
  1432.  Stored in directory: /root/.cache/pip/wheels/b8/61/ee/5dd2c6dcd39238fda7981f1ec0f1476c7b678d6e6dc63eeec5
  1433.  Running setup.py bdist_wheel for tablib: started
  1434.  Running setup.py bdist_wheel for tablib: finished with status 'done'
  1435.  Stored in directory: /root/.cache/pip/wheels/77/f4/ae/9413f885030d2b283e34278004aba422c1261f02cafe3f5b74
  1436.  Running setup.py bdist_wheel for diff-match-patch: started
  1437.  Running setup.py bdist_wheel for diff-match-patch: finished with status 'done'
  1438.  Stored in directory: /root/.cache/pip/wheels/0f/25/63/23c1c4e5589d32c69103ab864bc655f9e803fe344408e856fd
  1439.  Running setup.py bdist_wheel for django-allauth: started
  1440.  Running setup.py bdist_wheel for django-allauth: finished with status 'done'
  1441.  Stored in directory: /root/.cache/pip/wheels/88/01/e3/5c32a87e0579d70a40af20238bda23d3c7205d0153bd9c48f0
  1442.  Running setup.py bdist_wheel for future: started
  1443.  Running setup.py bdist_wheel for future: finished with status 'done'
  1444.  Stored in directory: /root/.cache/pip/wheels/c2/50/7c/0d83b4baac4f63ff7a765bd16390d2ab43c93587fac9d6017a
  1445.  Running setup.py bdist_wheel for docopt: started
  1446.  Running setup.py bdist_wheel for docopt: finished with status 'done'
  1447.  Stored in directory: /root/.cache/pip/wheels/b2/16/5f/c33a2bb5f2dce71205f8e65cbfd05647d79d441282be31fd82
  1448.  Running setup.py bdist_wheel for configparser: started
  1449.  Running setup.py bdist_wheel for configparser: finished with status 'done'
  1450.  Stored in directory: /root/.cache/pip/wheels/1c/bd/b4/277af3f6c40645661b4cd1c21df26aca0f2e1e9714a1d4cda8
  1451.  Running setup.py bdist_wheel for port-for: started
  1452.  Running setup.py bdist_wheel for port-for: finished with status 'done'
  1453.  Stored in directory: /root/.cache/pip/wheels/59/4e/68/d3a42868015e73913b1da097bf0cacfbd9b2261dc7f5796eda
  1454.  Running setup.py bdist_wheel for tornado: started
  1455.  Running setup.py bdist_wheel for tornado: finished with status 'done'
  1456.  Stored in directory: /root/.cache/pip/wheels/a7/c4/73/bc2a2585705932b79e2a9d2d3264b529f4a5947a7167957a70
  1457.  Running setup.py bdist_wheel for pathtools: started
  1458.  Running setup.py bdist_wheel for pathtools: finished with status 'done'
  1459.  Stored in directory: /root/.cache/pip/wheels/60/0d/2a/ffe065d190b580be6af9a862c68ed6a8a89c1778bd5c7ba7b8
  1460.  Running setup.py bdist_wheel for watchdog: started
  1461.  Running setup.py bdist_wheel for watchdog: finished with status 'done'
  1462.  Stored in directory: /root/.cache/pip/wheels/3c/9c/be/e82ae5a37c19baf8abe88623d1f47d2d502bed7b54d4f34740
  1463.  Running setup.py bdist_wheel for odfpy: started
  1464.  Running setup.py bdist_wheel for odfpy: finished with status 'done'
  1465.  Stored in directory: /root/.cache/pip/wheels/43/b2/d4/5121ca81ef956a1b05b8ff8ee4c95044fa7ff48fedcdd43762
  1466.  Running setup.py bdist_wheel for openpyxl: started
  1467.  Running setup.py bdist_wheel for openpyxl: finished with status 'done'
  1468.  Stored in directory: /root/.cache/pip/wheels/78/19/10/866830f7564cdcb6f78ca6841be465237c66c71aaedf940de3
  1469.  Running setup.py bdist_wheel for unicodecsv: started
  1470.  Running setup.py bdist_wheel for unicodecsv: finished with status 'done'
  1471.  Stored in directory: /root/.cache/pip/wheels/97/e2/16/219fa93b83edaff912b6805cfa19d0597e21f8d353f3e2d22f
  1472.  Running setup.py bdist_wheel for python-openid: started
  1473.  Running setup.py bdist_wheel for python-openid: finished with status 'done'
  1474.  Stored in directory: /root/.cache/pip/wheels/0a/da/67/e9e68f4b5e03732dc17a545b4ce3ce84b4a9bef67253d4ff72
  1475.  Running setup.py bdist_wheel for scandir: started
  1476.  Running setup.py bdist_wheel for scandir: finished with status 'done'
  1477.  Stored in directory: /root/.cache/pip/wheels/3d/51/95/79b749f7e52b5dea9e01b5c72da1c728151fc65a3984c37bec
  1478.  Running setup.py bdist_wheel for MarkupSafe: started
  1479.  Running setup.py bdist_wheel for MarkupSafe: finished with status 'done'
  1480.  Stored in directory: /root/.cache/pip/wheels/88/a7/30/e39a54a87bcbe25308fa3ca64e8ddc75d9b3e5afa21ee32d57
  1481.  Running setup.py bdist_wheel for jdcal: started
  1482.  Running setup.py bdist_wheel for jdcal: finished with status 'done'
  1483.  Stored in directory: /root/.cache/pip/wheels/0f/63/92/19ac65ed64189de4d662f269d39dd08a887258842ad2f29549
  1484.  Running setup.py bdist_wheel for et-xmlfile: started
  1485.  Running setup.py bdist_wheel for et-xmlfile: finished with status 'done'
  1486.  Stored in directory: /root/.cache/pip/wheels/99/f6/53/5e18f3ff4ce36c990fa90ebdf2b80cd9b44dc461f750a1a77c
  1487. Successfully built commonmark django-import-export django-rest-auth drfdocs PyYaml rstr coverage django-autofixture django-spaghetti-and-meatballs msgpack-python tablib diff-match-patch django-allauth future docopt configparser port-for tornado pathtools watchdog odfpy openpyxl unicodecsv python-openid scandir MarkupSafe jdcal et-xmlfile
  1488. Installing collected packages: asgiref, msgpack-python, redis, asgi-redis, commonmark, django, odfpy, jdcal, et-xmlfile, openpyxl, unicodecsv, xlrd, xlwt, PyYaml, tablib, diff-match-patch, django-import-export, djangorestframework, djangorestframework-expiring-authtoken, django-cors-headers, python-openid, oauthlib, urllib3, certifi, chardet, requests, requests-oauthlib, django-allauth, django-rest-auth, pytz, future, boto, django-ses, drfdocs, pika, scandir, pathlib2, pickleshare, Pillow, psycopg2, verboselogs, monotonic, humanfriendly, property-manager, coloredlogs, fasteners, executor, proc, rstr, pep8, autopep8, coverage, docopt, coveralls, django-autofixture, sqlparse, django-debug-toolbar, django-extensions, MarkupSafe, Jinja2, python-dateutil, Pygments, django-silk, django-spaghetti-and-meatballs, configparser, mccabe, pycodestyle, pyflakes, flake8, py, pytest, pytest-cov, docutils, recommonmark, babel, imagesize, alabaster, snowballstemmer, sphinx, port-for, futures, singledispatch, backports-abc, tornado, pathtools, livereload, argh, watchdog, sphinx-autobuild, sphinx-rtd-theme, pytest-django, Faker
  1489. Successfully installed Faker-0.7.7 Jinja2-2.10 MarkupSafe-1.0 Pillow-3.4.2 PyYaml-3.12 Pygments-2.2.0 alabaster-0.7.10 argh-0.26.2 asgi-redis-1.4.3 asgiref-1.1.2 autopep8-1.2.4 babel-2.5.3 backports-abc-0.5 boto-2.48.0 certifi-2018.1.18 chardet-3.0.4 coloredlogs-9.0 commonmark-0.5.4 configparser-3.5.0 coverage-4.2 coveralls-1.1 diff-match-patch-20121119 django-1.10.2 django-allauth-0.35.0 django-autofixture-0.12.1 django-cors-headers-1.3.1 django-debug-toolbar-1.8 django-extensions-1.7.8 django-import-export-0.5.1 django-rest-auth-0.9.2 django-ses-0.8.5 django-silk-1.0.0 django-spaghetti-and-meatballs-0.2.2 djangorestframework-3.5.2 djangorestframework-expiring-authtoken-0.1.4 docopt-0.6.2 docutils-0.14 drfdocs-0.0.11 et-xmlfile-1.0.1 executor-19.1 fasteners-0.14.1 flake8-3.0.4 future-0.16.0 futures-3.2.0 humanfriendly-4.10 imagesize-1.0.0 jdcal-1.3 livereload-2.5.1 mccabe-0.5.3 monotonic-1.4 msgpack-python-0.5.6 oauthlib-2.0.7 odfpy-1.3.6 openpyxl-2.5.2 pathlib2-2.3.0 pathtools-0.1.2 pep8-1.7.1 pickleshare-0.7.4 pika-0.10.0 port-for-0.3.1 proc-0.10.1 property-manager-2.2 psycopg2-2.7.3.2 py-1.5.3 pycodestyle-2.0.0 pyflakes-1.2.3 pytest-3.0.3 pytest-cov-2.4.0 pytest-django-3.1.2 python-dateutil-2.7.2 python-openid-2.2.5 pytz-2018.4 recommonmark-0.4.0 redis-2.10.6 requests-2.18.4 requests-oauthlib-0.8.0 rstr-2.2.5 scandir-1.7 singledispatch-3.4.0.3 snowballstemmer-1.2.1 sphinx-1.4.8 sphinx-autobuild-0.6.0 sphinx-rtd-theme-0.1.9 sqlparse-0.2.4 tablib-0.12.1 tornado-5.0.2 unicodecsv-0.14.1 urllib3-1.22 verboselogs-1.7 watchdog-0.8.3 xlrd-1.1.0 xlwt-1.3.0
  1490. Removing intermediate container 7778b000743a
  1491. ---> e05cefdedc98
  1492. Step 10/10 : CMD ["python", "scripts/workers/submission_worker.py"]
  1493. ---> Running in 27217b9cef89
  1494. Removing intermediate container 27217b9cef89
  1495. ---> 662b7942fb21
  1496. Successfully built 662b7942fb21
  1497. Successfully tagged evalai_submission-worker:latest
  1498. Creating evalai_db_1       ... done
  1499. Creating evalai_rabbitmq_1 ... done
  1500. Creating nodejs                     ... done
  1501. Creating django            ... done
  1502. Creating evalai_submission-worker_1 ... done
  1503. Attaching to evalai_rabbitmq_1, evalai_db_1, django, evalai_submission-worker_1, nodejs
  1504. rabbitmq_1           | 2018-04-10 16:32:05.683 [info] <0.33.0> Application lager started on node rabbit@rabbitmq
  1505. rabbitmq_1           | 2018-04-10 16:32:06.742 [info] <0.33.0> Application mnesia started on node rabbit@rabbitmq
  1506. rabbitmq_1           | 2018-04-10 16:32:06.743 [info] <0.33.0> Application recon started on node rabbit@rabbitmq
  1507. rabbitmq_1           | 2018-04-10 16:32:06.753 [info] <0.33.0> Application os_mon started on node rabbit@rabbitmq
  1508. db_1                 | The files belonging to this database system will be owned by user "postgres".
  1509. db_1                 | This user must also own the server process.
  1510. db_1                 |
  1511. rabbitmq_1           | 2018-04-10 16:32:06.868 [info] <0.33.0> Application inets started on node rabbit@rabbitmq
  1512. rabbitmq_1           | 2018-04-10 16:32:06.869 [info] <0.33.0> Application asn1 started on node rabbit@rabbitmq
  1513. rabbitmq_1           | 2018-04-10 16:32:06.869 [info] <0.33.0> Application crypto started on node rabbit@rabbitmq
  1514. db_1                 | The database cluster will be initialized with locale "en_US.utf8".
  1515. db_1                 | The default database encoding has accordingly been set to "UTF8".
  1516. db_1                 | The default text search configuration will be set to "english".
  1517. django               | wait-for-it.sh: waiting 15 seconds for db:5432
  1518. db_1                 |
  1519. rabbitmq_1           | 2018-04-10 16:32:06.869 [info] <0.33.0> Application public_key started on node rabbit@rabbitmq
  1520. db_1                 | Data page checksums are disabled.
  1521. db_1                 |
  1522. django               | wait-for-it.sh: db:5432 is available after 3 seconds
  1523. submission-worker_1  | wait-for-it.sh: waiting 15 seconds for django:8000
  1524. rabbitmq_1           | 2018-04-10 16:32:06.990 [info] <0.33.0> Application ssl started on node rabbit@rabbitmq
  1525. db_1                 | fixing permissions on existing directory /var/lib/postgresql/data ... ok
  1526. rabbitmq_1           | 2018-04-10 16:32:07.003 [info] <0.33.0> Application ranch started on node rabbit@rabbitmq
  1527. django               | Using Dev settings
  1528. db_1                 | creating subdirectories ... ok
  1529. rabbitmq_1           | 2018-04-10 16:32:07.004 [info] <0.33.0> Application ranch_proxy_protocol started on node rabbit@rabbitmq
  1530. django               | Operations to perform:
  1531. django               |   Apply all migrations: account, accounts, admin, auth, authtoken, challenges, contenttypes, django_ses, hosts, jobs, participants, rest_framework_expiring_authtoken, sessions, silk, sites, web
  1532. rabbitmq_1           | 2018-04-10 16:32:07.005 [info] <0.33.0> Application jsx started on node rabbit@rabbitmq
  1533. db_1                 | selecting default max_connections ... 100
  1534. django               | Running migrations:
  1535. rabbitmq_1           | 2018-04-10 16:32:07.006 [info] <0.33.0> Application xmerl started on node rabbit@rabbitmq
  1536. db_1                 | selecting default shared_buffers ... 128MB
  1537. rabbitmq_1           | 2018-04-10 16:32:07.007 [info] <0.33.0> Application rabbit_common started on node rabbit@rabbitmq
  1538. rabbitmq_1           | 2018-04-10 16:32:07.034 [info] <0.183.0>
  1539. rabbitmq_1           |  Starting RabbitMQ 3.7.4 on Erlang 20.2.4
  1540. rabbitmq_1           |  Copyright (C) 2007-2018 Pivotal Software, Inc.
  1541. db_1                 | selecting dynamic shared memory implementation ... posix
  1542. rabbitmq_1           |  Licensed under the MPL.  See http://www.rabbitmq.com/
  1543. django               |   Applying contenttypes.0001_initial... OK
  1544. db_1                 | creating configuration files ... ok
  1545. rabbitmq_1           |
  1546. rabbitmq_1           |   ##  ##
  1547. rabbitmq_1           |   ##  ##      RabbitMQ 3.7.4. Copyright (C) 2007-2018 Pivotal Software, Inc.
  1548. rabbitmq_1           |   ##########  Licensed under the MPL.  See http://www.rabbitmq.com/
  1549. rabbitmq_1           |   ######  ##
  1550. django               |   Applying auth.0001_initial... OK
  1551. rabbitmq_1           |   ##########  Logs: <stdout>
  1552. rabbitmq_1           |
  1553. db_1                 | running bootstrap script ... ok
  1554. rabbitmq_1           |               Starting broker...
  1555. django               |   Applying account.0001_initial... OK
  1556. django               |   Applying account.0002_email_max_length... OK
  1557. db_1                 | performing post-bootstrap initialization ... ok
  1558. django               |   Applying accounts.0001_initial... OK
  1559. rabbitmq_1           | 2018-04-10 16:32:07.064 [info] <0.183.0>
  1560. rabbitmq_1           |  node           : rabbit@rabbitmq
  1561. rabbitmq_1           |  home dir       : /var/lib/rabbitmq
  1562. rabbitmq_1           |  config file(s) : /etc/rabbitmq/rabbitmq.conf
  1563. django               |   Applying accounts.0002_profile... OK
  1564. db_1                 | syncing data to disk ... ok
  1565. rabbitmq_1           |  cookie hash    : CXqx1jOxWDqWPvy6SSml0w==
  1566. rabbitmq_1           |  log(s)         : <stdout>
  1567. django               |   Applying accounts.remove_affiliation_model... OK
  1568. rabbitmq_1           |  database dir   : /var/lib/rabbitmq/mnesia/rabbit@rabbitmq
  1569. db_1                 |
  1570. django               |   Applying admin.0001_initial... OK
  1571. db_1                 | Success. You can now start the database server using:
  1572. db_1                 |
  1573. db_1                 |     pg_ctl -D /var/lib/postgresql/data -l logfile start
  1574. db_1                 |
  1575. db_1                 |
  1576. db_1                 | WARNING: enabling "trust" authentication for local connections
  1577. db_1                 | You can change this by editing pg_hba.conf or using the option -A, or
  1578. db_1                 | --auth-local and --auth-host, the next time you run initdb.
  1579. django               |   Applying admin.0002_logentry_remove_auto_add... OK
  1580. db_1                 | ****************************************************
  1581. db_1                 | WARNING: No password has been set for the database.
  1582. db_1                 |          This will allow anyone with access to the
  1583. django               |   Applying contenttypes.0002_remove_content_type_name... OK
  1584. db_1                 |          Postgres port to access your database. In
  1585. db_1                 |          Docker's default configuration, this is
  1586. db_1                 |          effectively any other container on the same
  1587. django               |   Applying auth.0002_alter_permission_name_max_length... OK
  1588. db_1                 |          system.
  1589. db_1                 |
  1590. django               |   Applying auth.0003_alter_user_email_max_length... OK
  1591. db_1                 |          Use "-e POSTGRES_PASSWORD=password" to set
  1592. django               |   Applying auth.0004_alter_user_username_opts... OK
  1593. db_1                 |          it in "docker run".
  1594. django               |   Applying auth.0005_alter_user_last_login_null... OK
  1595. db_1                 | ****************************************************
  1596. django               |   Applying auth.0006_require_contenttypes_0002... OK
  1597. django               |   Applying auth.0007_alter_validators_add_error_messages... OK
  1598. db_1                 | waiting for server to start....2018-04-10 16:32:01.113 UTC [40] LOG:  listening on IPv4 address "127.0.0.1", port 5432
  1599. db_1                 | 2018-04-10 16:32:01.113 UTC [40] LOG:  could not bind IPv6 address "::1": Cannot assign requested address
  1600. django               |   Applying auth.0008_alter_user_username_max_length... OK
  1601. db_1                 | 2018-04-10 16:32:01.113 UTC [40] HINT:  Is another postmaster already running on port 5432? If not, wait a few seconds and retry.
  1602. django               |   Applying authtoken.0001_initial... OK
  1603. db_1                 | 2018-04-10 16:32:01.118 UTC [40] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
  1604. db_1                 | 2018-04-10 16:32:01.139 UTC [41] LOG:  database system was shut down at 2018-04-10 16:32:00 UTC
  1605. django               |   Applying authtoken.0002_auto_20160226_1747... OK
  1606. db_1                 | 2018-04-10 16:32:01.147 UTC [40] LOG:  database system is ready to accept connections
  1607. db_1                 |  done
  1608. db_1                 | server started
  1609. django               |   Applying hosts.0001_initial... OK
  1610. db_1                 | ALTER ROLE
  1611. django               |   Applying challenges.0001_initial... OK
  1612. db_1                 |
  1613. db_1                 |
  1614. db_1                 | /usr/local/bin/docker-entrypoint.sh: ignoring /docker-entrypoint-initdb.d/*
  1615. django               |   Applying participants.0001_initial... OK
  1616. db_1                 |
  1617. db_1                 | 2018-04-10 16:32:01.368 UTC [40] LOG:  received fast shutdown request
  1618. django               |   Applying participants.0002_participantteam_participantteammember... OK
  1619. db_1                 | waiting for server to shut down....2018-04-10 16:32:01.373 UTC [40] LOG:  aborting any active transactions
  1620. db_1                 | 2018-04-10 16:32:01.377 UTC [40] LOG:  worker process: logical replication launcher (PID 47) exited with exit code 1
  1621. django               |   Applying participants.0003_remove_participant_challenge... OK
  1622. db_1                 | 2018-04-10 16:32:01.381 UTC [42] LOG:  shutting down
  1623. db_1                 | 2018-04-10 16:32:01.416 UTC [40] LOG:  database system is shut down
  1624. django               |   Applying participants.0004_add_created_by_participant_team... OK
  1625. db_1                 |  done
  1626. db_1                 | server stopped
  1627. db_1                 |
  1628. django               |   Applying participants.0005_remove_participantteam_challenge... OK
  1629. db_1                 | PostgreSQL init process complete; ready for start up.
  1630. db_1                 |
  1631. django               |   Applying participants.0006_alter_status_participant_choices... OK
  1632. db_1                 | 2018-04-10 16:32:01.485 UTC [1] LOG:  listening on IPv4 address "0.0.0.0", port 5432
  1633. db_1                 | 2018-04-10 16:32:01.485 UTC [1] LOG:  listening on IPv6 address "::", port 5432
  1634. django               |   Applying participants.0007_add_team_participant... OK
  1635. db_1                 | 2018-04-10 16:32:01.489 UTC [1] LOG:  listening on Unix socket "/var/run/postgresql/.s.PGSQL.5432"
  1636. db_1                 | 2018-04-10 16:32:01.505 UTC [58] LOG:  database system was shut down at 2018-04-10 16:32:01 UTC
  1637. db_1                 | 2018-04-10 16:32:01.513 UTC [1] LOG:  database system is ready to accept connections
  1638. django               |   Applying challenges.0002_challenge_participant_teams... OK
  1639. db_1                 | 2018-04-10 16:32:01.714 UTC [65] LOG:  incomplete startup packet
  1640. django               |   Applying challenges.0003_auto_20161203_2258... OK
  1641. django               |   Applying challenges.0004_challenge_is_disabled... OK
  1642. django               |   Applying challenges.0005_changed_phase_model... OK
  1643. django               |   Applying challenges.0006_changed_path_to_upload... OK
  1644. django               |   Applying challenges.0007_rename_test_environment... OK
  1645. django               |   Applying jobs.0001_squashed_0005_upload_unique_random_filename... OK
  1646. django               |   Applying challenges.0008_max_submissions... OK
  1647. django               |   Applying challenges.0009_challengephase_is_public... OK
  1648. django               |   Applying challenges.0010_update_upload_folder_names... OK
  1649. django               |   Applying challenges.0011_approved_by_admin_field_added... OK
  1650. django               |   Applying challenges.0012_added_code_name_field... OK
  1651. django               |   Applying challenges.0013_added_code_name_field... OK
  1652. django               |   Applying challenges.0014_changed_code_name_field... OK
  1653. django               |   Applying challenges.0015_added_dataset_split... OK
  1654. django               |   Applying challenges.0016_added_dataset_split_as_m2m_field... OK
  1655. django               |   Applying challenges.0017_added_leaderboard_table... OK
  1656. django               |   Applying challenges.0018_added_challenge_phase_split_table... OK
  1657. django               |   Applying challenges.0019_added_leaderboard_data_table... OK
  1658. django               |   Applying challenges.0020_alter_challenge_phase_split... OK
  1659. django               |   Applying challenges.0021_remove_challengephase_dataset_split... OK
  1660. django               |   Applying challenges.0022_challengephase_dataset_split... OK
  1661. django               |   Applying challenges.0023_upload_unique_random_filename... OK
  1662. django               |   Applying challenges.0024_added_short_description_field... OK
  1663. django               |   Applying challenges.0025_added_is_submission_pubblic_field... OK
  1664. django               |   Applying challenges.0026_adds_default_field_in_test_annotation... OK
  1665. django               |   Applying challenges.0027_adds_unique_to_codename_dataset_split... OK
  1666. django               |   Applying challenges.0028_zip_configuration_models_for_challenge_creation... OK
  1667. django               |   Applying challenges.0029_add_challenge_star... OK
  1668. django               |   Applying challenges.0030_add_boolean_field_in_star_model... OK
  1669. django               |   Applying challenges.0031_add_db_index_to_challenge_related_models... OK
  1670. django               |   Applying challenges.0032_adds_featured_field_in_challenge... OK
  1671. django               |   Applying challenges.0033_delete_unique_constraint_from_datasetsplit_table... OK
  1672. django               |   Applying challenges.0034_add_allow_block_domain_fields... OK
  1673. django               |   Applying django_ses.0001_initial... OK
  1674. django               |   Applying hosts.0002_added_unique_attribute_in_team_name... OK
  1675. django               |   Applying jobs.0002_path_fix_for_submission_files... OK
  1676. django               |   Applying jobs.0003_added_method_name_field... OK
  1677. rabbitmq_1           | 2018-04-10 16:32:12.023 [info] <0.191.0> Memory high watermark set to 799 MiB (838308659 bytes) of 1998 MiB (2095771648 bytes) total
  1678. rabbitmq_1           | 2018-04-10 16:32:12.039 [info] <0.193.0> Enabling free disk space monitoring
  1679. rabbitmq_1           | 2018-04-10 16:32:12.039 [info] <0.193.0> Disk free limit set to 50MB
  1680. rabbitmq_1           | 2018-04-10 16:32:12.054 [info] <0.195.0> Limiting to approx 1048476 file handles (943626 sockets)
  1681. rabbitmq_1           | 2018-04-10 16:32:12.055 [info] <0.196.0> FHC read buffering:  OFF
  1682. rabbitmq_1           | 2018-04-10 16:32:12.055 [info] <0.196.0> FHC write buffering: ON
  1683. rabbitmq_1           | 2018-04-10 16:32:12.062 [info] <0.183.0> Node database directory at /var/lib/rabbitmq/mnesia/rabbit@rabbitmq is empty. Assuming we need to join an existing cluster or initialise from scratch...
  1684. rabbitmq_1           | 2018-04-10 16:32:12.062 [info] <0.183.0> Configured peer discovery backend: rabbit_peer_discovery_classic_config
  1685. rabbitmq_1           | 2018-04-10 16:32:12.062 [info] <0.183.0> Will try to lock with peer discovery backend rabbit_peer_discovery_classic_config
  1686. rabbitmq_1           | 2018-04-10 16:32:12.062 [info] <0.183.0> Peer discovery backend does not support locking, falling back to randomized delay
  1687. rabbitmq_1           | 2018-04-10 16:32:12.062 [info] <0.183.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping randomized startup delay.
  1688. rabbitmq_1           | 2018-04-10 16:32:12.063 [info] <0.183.0> All discovered existing cluster peers:
  1689. rabbitmq_1           | 2018-04-10 16:32:12.063 [info] <0.183.0> Discovered no peer nodes to cluster with
  1690. rabbitmq_1           | 2018-04-10 16:32:12.066 [info] <0.33.0> Application mnesia exited with reason: stopped
  1691. django               |   Applying jobs.0004_added_method_desc_aand_urls_to_submission_model... OK
  1692. rabbitmq_1           | 2018-04-10 16:32:12.118 [info] <0.33.0> Application mnesia started on node rabbit@rabbitmq
  1693. rabbitmq_1           | 2018-04-10 16:32:12.271 [info] <0.183.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
  1694. rabbitmq_1           | 2018-04-10 16:32:12.301 [info] <0.183.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
  1695. rabbitmq_1           | 2018-04-10 16:32:12.339 [info] <0.183.0> Waiting for Mnesia tables for 30000 ms, 9 retries left
  1696. rabbitmq_1           | 2018-04-10 16:32:12.339 [info] <0.183.0> Peer discovery backend rabbit_peer_discovery_classic_config does not support registration, skipping registration.
  1697. rabbitmq_1           | 2018-04-10 16:32:12.341 [info] <0.183.0> Priority queues enabled, real BQ is rabbit_variable_queue
  1698. rabbitmq_1           | 2018-04-10 16:32:12.370 [info] <0.366.0> Starting rabbit_node_monitor
  1699. django               |   Applying jobs.0005_added_new_fields_to_submission_model... OK
  1700. rabbitmq_1           | 2018-04-10 16:32:12.392 [info] <0.183.0> message_store upgrades: 1 to apply
  1701. rabbitmq_1           | 2018-04-10 16:32:12.392 [info] <0.183.0> message_store upgrades: Applying rabbit_variable_queue:move_messages_to_vhost_store
  1702. rabbitmq_1           | 2018-04-10 16:32:12.393 [info] <0.183.0> message_store upgrades: No durable queues found. Skipping message store migration
  1703. rabbitmq_1           | 2018-04-10 16:32:12.393 [info] <0.183.0> message_store upgrades: Removing the old message store data
  1704. rabbitmq_1           | 2018-04-10 16:32:12.397 [info] <0.183.0> message_store upgrades: All upgrades applied successfully
  1705. rabbitmq_1           | 2018-04-10 16:32:12.425 [info] <0.183.0> Adding vhost '/'
  1706. rabbitmq_1           | 2018-04-10 16:32:12.454 [info] <0.400.0> Making sure data directory '/var/lib/rabbitmq/mnesia/rabbit@rabbitmq/msg_stores/vhosts/628WB79CIFDYO9LJI6DKMI09L' for vhost '/' exists
  1707. rabbitmq_1           | 2018-04-10 16:32:12.461 [info] <0.400.0> Starting message stores for vhost '/'
  1708. rabbitmq_1           | 2018-04-10 16:32:12.462 [info] <0.404.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_transient": using rabbit_msg_store_ets_index to provide index
  1709. rabbitmq_1           | 2018-04-10 16:32:12.466 [info] <0.400.0> Started message store of type transient for vhost '/'
  1710. rabbitmq_1           | 2018-04-10 16:32:12.466 [info] <0.407.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": using rabbit_msg_store_ets_index to provide index
  1711. rabbitmq_1           | 2018-04-10 16:32:12.469 [warning] <0.407.0> Message store "628WB79CIFDYO9LJI6DKMI09L/msg_store_persistent": rebuilding indices from scratch
  1712. rabbitmq_1           | 2018-04-10 16:32:12.471 [info] <0.400.0> Started message store of type persistent for vhost '/'
  1713. rabbitmq_1           | 2018-04-10 16:32:12.475 [info] <0.183.0> Creating user 'guest'
  1714. rabbitmq_1           | 2018-04-10 16:32:12.481 [info] <0.183.0> Setting user tags for user 'guest' to [administrator]
  1715. rabbitmq_1           | 2018-04-10 16:32:12.485 [info] <0.183.0> Setting permissions for 'guest' in '/' to '.*', '.*', '.*'
  1716. rabbitmq_1           | 2018-04-10 16:32:12.493 [info] <0.445.0> started TCP Listener on [::]:5672
  1717. rabbitmq_1           | 2018-04-10 16:32:12.497 [info] <0.183.0> Setting up a table for connection tracking on this node: tracked_connection_on_node_rabbit@rabbitmq
  1718. rabbitmq_1           | 2018-04-10 16:32:12.504 [info] <0.183.0> Setting up a table for per-vhost connection counting on this node: tracked_connection_per_vhost_on_node_rabbit@rabbitmq
  1719. rabbitmq_1           | 2018-04-10 16:32:12.506 [info] <0.33.0> Application rabbit started on node rabbit@rabbitmq
  1720. django               |   Applying jobs.0006_add_indexing_to_some_attributes... OK
  1721. rabbitmq_1           |  completed with 0 plugins.
  1722. rabbitmq_1           | 2018-04-10 16:32:13.086 [info] <0.5.0> Server startup complete; 0 plugins started.
  1723. django               |   Applying jobs.0007_add_is_flagged_field... OK
  1724. django               |   Applying jobs.0008_remove_indexing_submission... OK
  1725. django               |   Applying participants.0008_added_unique_in_team_name... OK
  1726. django               |   Applying rest_framework_expiring_authtoken.0001_initial... OK
  1727. django               |   Applying sessions.0001_initial... OK
  1728. django               |   Applying silk.0001_initial... OK
  1729. django               |   Applying silk.0002_auto_update_uuid4_id_field... OK
  1730. django               |   Applying silk.0003_request_prof_file... OK
  1731. django               |   Applying silk.0004_request_prof_file_storage... OK
  1732. django               |   Applying sites.0001_initial... OK
  1733. django               |   Applying sites.0002_alter_domain_unique... OK
  1734. django               |   Applying web.0001_initial... OK
  1735. django               |   Applying web.0002_added_team_model... OK
  1736. django               |   Applying web.0003_added_description_and_background_image_to_team_model... OK
  1737. django               |   Applying web.0004_change_team_model_field_type... OK
  1738. django               |   Applying web.0005_modified_default_attribute_of_visible_field_to_false... OK
  1739. submission-worker_1  | wait-for-it.sh: timeout occurred after waiting 15 seconds for django:8000
  1740. django               | Using Dev settings
  1741. submission-worker_1  | Using Dev settings
  1742. django               | Starting the database seeder. Hang on...
  1743. django               | Seeding...
  1744. nodejs               | [16:32:16] Using gulpfile /code/gulpfile.js
  1745. nodejs               | [16:32:16] Starting 'dev:runserver'...
  1746. nodejs               | [16:32:16] Starting 'dev'...
  1747. nodejs               | [16:32:16] Starting 'clean'...
  1748. django               | Super user was created with username: admin password: password
  1749. django               | User was created with username: host password: password
  1750. django               | Challenge Host Team created with team_name: South Thomas Host Team created_by: host
  1751. django               | Challenge Host created with user: host team_name: South Thomas Host Team
  1752. django               | [2018-04-10 16:32:16] INFO evaluation_script for 1 changed !
  1753. django               | Challenge created with title: Laura Challenge creator: South Thomas Host Team start_date: 2017-12-31 16:32:16.802864+00:00 end_date: 2019-08-23 16:32:16.802889+00:00
  1754. django               | Leaderboard created
  1755. django               | [2018-04-10 16:32:16] INFO test_annotation for 1 changed !
  1756. django               | Challenge Phase created with name: Craig Phase challenge: Laura Challenge
  1757. django               | [2018-04-10 16:32:16] INFO test_annotation for 2 changed !
  1758. django               | Challenge Phase created with name: Brenda Phase challenge: Laura Challenge
  1759. django               | Dataset Split created with name: Split 1 codename: split1
  1760. django               | Dataset Split created with name: Split 2 codename: split2
  1761. django               | Challenge Phase Split created with challenge_phase: Craig Phase dataset_split: Split 1
  1762. django               | Challenge Phase Split created with challenge_phase: Craig Phase dataset_split: Split 2
  1763. django               | Challenge Phase Split created with challenge_phase: Brenda Phase dataset_split: Split 1
  1764. django               | Challenge Phase Split created with challenge_phase: Brenda Phase dataset_split: Split 2
  1765. django               | User was created with username: participant password: password
  1766. django               | Participant Team created with team_name: Staceybury Participant Team created_by: participant
  1767. django               | Participant created with user: participant team_name: Staceybury Participant Team
  1768. django               | Database successfully seeded.
  1769. nodejs               | [16:32:16] Finished 'clean' after 275 ms
  1770. nodejs               | [16:32:16] Starting 'css'...
  1771. nodejs               | [16:32:16] Starting 'js'...
  1772. nodejs               | [16:32:17] Starting 'html'...
  1773. nodejs               | [16:32:17] Starting 'images'...
  1774. submission-worker_1  | [2018-04-10 16:32:17] INFO Using /tmp/tmpBDGFbq as temp directory to store data
  1775. submission-worker_1  | [2018-04-10 16:32:17] ERROR Failed to fetch file from http://django:8000/media/evaluation_scripts/4a3c30d2-12ee-44b3-8641-9c9f9f8bc8bf.zip, error HTTPConnectionPool(host='django', port=8000): Max retries exceeded with url: /media/evaluation_scripts/4a3c30d2-12ee-44b3-8641-9c9f9f8bc8bf.zip (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f42f4c5f650>: Failed to establish a new connection: [Errno 111] Connection refused',))
  1776. submission-worker_1  | [2018-04-10 16:32:17] ERROR Failed to fetch file from http://django:8000/media/test_annotations/e38405cf-a1f2-4e3c-b546-0ac30f5844f0.txt, error HTTPConnectionPool(host='django', port=8000): Max retries exceeded with url: /media/test_annotations/e38405cf-a1f2-4e3c-b546-0ac30f5844f0.txt (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f42f4c5fc90>: Failed to establish a new connection: [Errno 111] Connection refused',))
  1777. submission-worker_1  | Traceback (most recent call last):
  1778. submission-worker_1  |   File "scripts/workers/submission_worker.py", line 108, in download_and_extract_file
  1779. submission-worker_1  |     response = requests.get(url)
  1780. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/api.py", line 72, in get
  1781. submission-worker_1  |     return request('get', url, params=params, **kwargs)
  1782. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
  1783. submission-worker_1  |     return session.request(method=method, url=url, **kwargs)
  1784. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
  1785. submission-worker_1  |     resp = self.send(prep, **send_kwargs)
  1786. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
  1787. submission-worker_1  |     r = adapter.send(request, **kwargs)
  1788. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
  1789. submission-worker_1  |     raise ConnectionError(e, request=request)
  1790. submission-worker_1  | ConnectionError: HTTPConnectionPool(host='django', port=8000): Max retries exceeded with url: /media/test_annotations/e38405cf-a1f2-4e3c-b546-0ac30f5844f0.txt (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f42f4c5fc90>: Failed to establish a new connection: [Errno 111] Connection refused',))
  1791. submission-worker_1  | [2018-04-10 16:32:17] ERROR Failed to fetch file from http://django:8000/media/test_annotations/3f509342-897c-4b14-ab3d-589cb8ec64c8.txt, error HTTPConnectionPool(host='django', port=8000): Max retries exceeded with url: /media/test_annotations/3f509342-897c-4b14-ab3d-589cb8ec64c8.txt (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f42f480b3d0>: Failed to establish a new connection: [Errno 111] Connection refused',))
  1792. submission-worker_1  | Traceback (most recent call last):
  1793. submission-worker_1  |   File "scripts/workers/submission_worker.py", line 108, in download_and_extract_file
  1794. submission-worker_1  |     response = requests.get(url)
  1795. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/api.py", line 72, in get
  1796. submission-worker_1  |     return request('get', url, params=params, **kwargs)
  1797. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/api.py", line 58, in request
  1798. submission-worker_1  |     return session.request(method=method, url=url, **kwargs)
  1799. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/sessions.py", line 508, in request
  1800. submission-worker_1  |     resp = self.send(prep, **send_kwargs)
  1801. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/sessions.py", line 618, in send
  1802. submission-worker_1  |     r = adapter.send(request, **kwargs)
  1803. submission-worker_1  |   File "/usr/local/lib/python2.7/site-packages/requests/adapters.py", line 508, in send
  1804. submission-worker_1  |     raise ConnectionError(e, request=request)
  1805. submission-worker_1  | ConnectionError: HTTPConnectionPool(host='django', port=8000): Max retries exceeded with url: /media/test_annotations/3f509342-897c-4b14-ab3d-589cb8ec64c8.txt (Caused by NewConnectionError('<urllib3.connection.HTTPConnection object at 0x7f42f480b3d0>: Failed to establish a new connection: [Errno 111] Connection refused',))
  1806. submission-worker_1  | [2018-04-10 16:32:17] INFO Connecting to 172.18.0.3:5672
  1807. rabbitmq_1           | 2018-04-10 16:32:17.216 [info] <0.457.0> accepting AMQP connection <0.457.0> (172.18.0.5:55834 -> 172.18.0.3:5672)
  1808. submission-worker_1  | [2018-04-10 16:32:17] INFO Created channel=1
  1809. rabbitmq_1           | 2018-04-10 16:32:17.230 [info] <0.457.0> connection <0.457.0> (172.18.0.5:55834 -> 172.18.0.3:5672): user 'guest' authenticated and granted access to vhost '/'
  1810. submission-worker_1  | [2018-04-10 16:32:17] INFO [*] Waiting for messages. To exit press CTRL+C
  1811. django               | Using Dev settings
  1812. nodejs               | [16:32:17] Starting 'vendorjs'...
  1813. nodejs               | [16:32:17] Finished 'vendorjs' after 32 ms
  1814. nodejs               | [16:32:17] Starting 'vendorcss'...
  1815. nodejs               | [16:32:17] Finished 'vendorcss' after 4.65 ms
  1816. nodejs               | [16:32:17] Starting 'fonts'...
  1817. nodejs               | [16:32:17] Starting 'configDev'...
  1818. nodejs               | [16:32:17] Finished 'configDev' after 2.74 ms
  1819. nodejs               | [16:32:18] Finished 'css' after 1.43 s
  1820. django               | Using Dev settings
  1821. nodejs               | [16:32:19] Finished 'js' after 2.16 s
  1822. django               | Performing system checks...
  1823. django               |
  1824. nodejs               | [16:32:19] Finished 'fonts' after 2.45 s
  1825. nodejs               | [16:32:20] Finished 'html' after 3.21 s
  1826. django               | System check identified no issues (0 silenced).
  1827. django               | April 10, 2018 - 16:32:20
  1828. django               | Django version 1.10.2, using settings 'settings'
  1829. django               | Starting development server at http://0.0.0.0:8000/
  1830. django               | Quit the server with CONTROL-C.
  1831. nodejs               | [16:33:08] gulp-imagemin: Minified 7 images (saved 22.1 kB - 2%)
  1832. nodejs               | [16:33:08] Finished 'images' after 51 s
  1833. nodejs               | [16:33:08] Starting 'inject'...
  1834. nodejs               | [16:33:08] Finished 'inject' after 8.59 ms
  1835. nodejs               | [16:33:08] Finished 'dev' after 52 s
  1836. nodejs               | [16:33:08] Starting 'lint'...
  1837. nodejs               | [16:33:08] gulp-inject 11 files into base.html.
  1838. nodejs               | [16:33:09] Finished 'lint' after 1.47 s
  1839. nodejs               | [16:33:09] Starting 'connect'...
  1840. nodejs               | [16:33:09] Starting server...
  1841. nodejs               | [16:33:09] Finished 'connect' after 3.54 ms
  1842. nodejs               | [16:33:09] Starting 'watch'...
  1843. nodejs               | [16:33:14] Finished 'watch' after 4.88 s
  1844. nodejs               | [16:33:14] Starting 'test:watch'...
  1845. nodejs               | [16:33:14] Server started http://0.0.0.0:8888
  1846. nodejs               | [16:33:14] Running server
  1847. nodejs               | 10 04 2018 16:33:14.842:WARN [karma]: No captured browser, open http://localhost:9876/
  1848. nodejs               | 10 04 2018 16:33:14.850:INFO [karma]: Front-end scripts not present. Compiling...
  1849. nodejs               | 10 04 2018 16:33:24.720:INFO [karma]: Karma v2.0.0 server started at http://0.0.0.0:9876/
  1850. nodejs               | 10 04 2018 16:33:24.720:INFO [launcher]: Launching browser PhantomJS with unlimited concurrency
  1851. nodejs               | 10 04 2018 16:33:24.729:INFO [launcher]: Starting browser PhantomJS
  1852. nodejs               | 10 04 2018 16:33:26.234:INFO [PhantomJS 2.1.1 (Linux 0.0.0)]: Connected on socket 0kuGIN6Ec347O7QBAAAA with id 25906460
  1853. nodejs               |
  1854. nodejs               | START:
  1855. nodejs               |   Unit Tests for auth controller
  1856. nodejs               |     Global Variables
  1857. nodejs               |       ✔ has default values
  1858. nodejs               |     Validate helper functions
  1859. nodejs               |       ✔ startLoader
  1860. nodejs               |       ✔ stopLoader
  1861. nodejs               |       ✔ resetForm
  1862. nodejs               |     Unit test for userSignUp function
  1863. nodejs               |       ✔ correct sign up details
  1864. nodejs               |       ✔ missing username
  1865. nodejs               |       ✔ missing email
  1866. nodejs               |       ✔ missing password
  1867. nodejs               |       ✔ mismatch password
  1868. nodejs               |       ✔ invalid details
  1869. nodejs               |     Unit test for userLogin function
  1870. nodejs               |       ✔ correct login details
  1871. nodejs               |       ✔ backend error
  1872. nodejs               |       ✔ invalid details
  1873. nodejs               |     verifyEmail
  1874. nodejs               |       ✔ correct email
  1875. nodejs               |       ✔ incorrect email
  1876. nodejs               |     resetPassword
  1877. nodejs               |       ✔ sent successfully
  1878. nodejs               |       ✔ backend error
  1879. nodejs               |       ✔ invalid details
  1880. nodejs               |     resetPasswordConfirm
  1881. nodejs               |       ✔ successful reset
  1882. nodejs               |       ✔ backend error
  1883. nodejs               |       ✔ invalid details
  1884. nodejs               |
  1885. nodejs               | Finished in 0.878 secs / 0.012 secs @ 16:33:27 GMT+0000 (UTC)
  1886. nodejs               |
  1887. nodejs               | SUMMARY:
  1888. nodejs               |21 tests completed
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement