Advertisement
Guest User

Untitled

a guest
Mar 31st, 2020
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.39 KB | None | 0 0
  1.  
  2. Thor@Thor-PC MINGW64 /g/Tensor/TheSpaghettiDetective (master)
  3. $ docker-compose up --build -d
  4. Building ml_api
  5. Step 1/8 : FROM thespaghettidetective/ml_api:base
  6. ---> 6eaa0374427c
  7. Step 2/8 : WORKDIR /app
  8. ---> Using cache
  9. ---> 354b56feeb32
  10. Step 3/8 : EXPOSE 3333
  11. ---> Using cache
  12. ---> 024d979aaa81
  13. Step 4/8 : ADD . /app
  14. ---> Using cache
  15. ---> c71ecac741e2
  16. Step 5/8 : RUN cp bin/model_$(uname --m).so bin/model.so && cp bin/model_gpu
  17. _$(uname --m).so bin/model_gpu.so
  18. ---> Using cache
  19. ---> db2a4b234886
  20. Step 6/8 : RUN pip install --upgrade pip
  21. ---> Using cache
  22. ---> 9cff94485507
  23. Step 7/8 : RUN pip install -r requirements.txt
  24. ---> Using cache
  25. ---> b8270bf210e4
  26. Step 8/8 : RUN wget --quiet -O model/model.weights $(cat model/model.weights.url
  27. | tr -d '\r')
  28. ---> Using cache
  29. ---> a4946886e6ad
  30.  
  31. Successfully built a4946886e6ad
  32. Successfully tagged thespaghettidetective_ml_api:latest
  33. Building web
  34. Step 1/7 : FROM thespaghettidetective/web:base-1.1
  35. ---> 71fa3a4936ec
  36. Step 2/7 : WORKDIR /app
  37. ---> Using cache
  38. ---> f42b1be2cdc2
  39. Step 3/7 : EXPOSE 3334
  40. ---> Using cache
  41. ---> 3c6c93209a0e
  42. Step 4/7 : ADD . /app
  43. ---> Using cache
  44. ---> 30c1efb7469c
  45. Step 5/7 : RUN pip install -U pip
  46. ---> Using cache
  47. ---> c7d9c0858689
  48. Step 6/7 : RUN pip install -r requirements.txt
  49. ---> Using cache
  50. ---> 94313b51eec7
  51. Step 7/7 : RUN python manage.py collectstatic --noinput -c
  52. ---> Using cache
  53. ---> c03fff9bcbc4
  54.  
  55. Successfully built c03fff9bcbc4
  56. Successfully tagged thespaghettidetective_web:latest
  57. Building tasks
  58. Step 1/7 : FROM thespaghettidetective/web:base-1.1
  59. ---> 71fa3a4936ec
  60. Step 2/7 : WORKDIR /app
  61. ---> Using cache
  62. ---> f42b1be2cdc2
  63. Step 3/7 : EXPOSE 3334
  64. ---> Using cache
  65. ---> 3c6c93209a0e
  66. Step 4/7 : ADD . /app
  67. ---> Using cache
  68. ---> 30c1efb7469c
  69. Step 5/7 : RUN pip install -U pip
  70. ---> Using cache
  71. ---> c7d9c0858689
  72. Step 6/7 : RUN pip install -r requirements.txt
  73. ---> Using cache
  74. ---> 94313b51eec7
  75. Step 7/7 : RUN python manage.py collectstatic --noinput -c
  76. ---> Using cache
  77. ---> c03fff9bcbc4
  78.  
  79. Successfully built c03fff9bcbc4
  80. Successfully tagged thespaghettidetective_tasks:latest
  81. Starting thespaghettidetective_ml_api_1 ... done
  82. Starting thespaghettidetective_redis_1 ... done
  83. Starting thespaghettidetective_web_1 ... done
  84. Starting thespaghettidetective_tasks_1 ... done
  85.  
  86. Thor@Thor-PC MINGW64 /g/Tensor/TheSpaghettiDetective (master)
  87. $
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement