Advertisement
Guest User

Untitled

a guest
Oct 10th, 2018
251
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. Sending build context to Docker daemon 21.81MB
  2.  
  3. Step 1/25 : FROM node:10 AS build-home
  4. ---> 8672b25e842c
  5. Step 2/25 : WORKDIR /usr/src/app/home
  6. ---> Using cache
  7. ---> 16d0f8418b84
  8. Step 3/25 : RUN apt-get update
  9. ---> Using cache
  10. ---> e54a42bd93f9
  11. Step 4/25 : RUN apt-get install nasm
  12. ---> Using cache
  13. ---> df822063f80b
  14. Step 5/25 : RUN apt-get install libfontconfig
  15. ---> Using cache
  16. ---> 0fd13fc6e730
  17. Step 6/25 : COPY /home/package.json /home/yarn.lock /usr/src/app/home/
  18. ---> Using cache
  19. ---> dfb40d412abc
  20. Step 7/25 : COPY /astralnalog /usr/src/app/astralnalog/
  21. ---> Using cache
  22. ---> 759153f21710
  23. Step 8/25 : RUN yarn install
  24. ---> Using cache
  25. ---> 57ddab83a658
  26. Step 9/25 : COPY ./home ./
  27. ---> Using cache
  28. ---> cbd16ca7e2d5
  29. Step 10/25 : RUN yarn build
  30. ---> Using cache
  31. ---> 04d7accdb8a1
  32. Step 11/25 : FROM node:10 AS build-dashboard
  33. ---> 8672b25e842c
  34. Step 12/25 : WORKDIR /usr/src/app/dashboard
  35. ---> Using cache
  36. ---> e7f32b66876e
  37. Step 13/25 : RUN apt-get update
  38. ---> Using cache
  39. ---> ff680e4ca233
  40. Step 14/25 : RUN apt-get install nasm
  41. ---> Using cache
  42. ---> b06bd7115d02
  43. Step 15/25 : RUN apt-get install libfontconfig
  44. ---> Using cache
  45. ---> 65497ac0f19b
  46. Step 16/25 : COPY /dashboard/package.json /dashboard/yarn.lock /usr/src/app/dashboard/
  47. ---> Using cache
  48. ---> b91a55a0c9eb
  49. Step 17/25 : COPY /astralnalog /usr/src/app/astralnalog/
  50. ---> Using cache
  51. ---> aec28f1d683e
  52. Step 18/25 : RUN yarn install
  53. ---> Using cache
  54. ---> 20d71e465dc6
  55. Step 19/25 : COPY ./dashboard ./
  56. ---> Using cache
  57. ---> a68fe7f9bc97
  58. Step 20/25 : RUN yarn build
  59. ---> Using cache
  60. ---> cf2574446e7c
  61. Step 21/25 : FROM nginx
  62. ---> be1f31be9a87
  63. Step 22/25 : EXPOSE 5001
  64. ---> Using cache
  65. ---> 64d654263b41
  66. Step 23/25 : COPY nginx.conf /etc/nginx/nginx.conf
  67. ---> Using cache
  68. ---> 8b90e641bf67
  69. Step 24/25 : COPY --from=build-home /usr/src/app/home/dist /usr/share/nginx/html/home
  70. ---> Using cache
  71. ---> d0030bf392eb
  72. Step 25/25 : COPY --from=build-dashboard /usr/src/app/dashboard/dist /usr/share/nginx/html/dashboard
  73. ---> Using cache
  74. ---> 6215d4003c6f
  75. Successfully built 6215d4003c6f
  76. Successfully tagged test-image:latest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement