Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.36 KB | None | 0 0
  1. $ docker build . -t haikuporter
  2. Sending build context to Docker daemon 65.02 kB
  3. Step 1 : FROM fedora
  4. ---> 1f8ec1108a3f
  5. Step 2 : MAINTAINER Haiku, Inc.
  6. ---> Using cache
  7. ---> 65e70d1906d5
  8. Step 3 : ENV TARGET_ARCH x86_64
  9. ---> Using cache
  10. ---> 8a9fb2aaad69
  11. Step 4 : RUN dnf update -y && dnf install -y git python2 python2-paramiko wget xz
  12. ---> Using cache
  13. ---> cc93c3848ac4
  14. Step 5 : RUN mkdir -p /app
  15. ---> Using cache
  16. ---> 23bdbaa4fc9a
  17. Step 6 : WORKDIR /app
  18. ---> Using cache
  19. ---> ac5acb4b34e8
  20. Step 7 : RUN git clone https://github.com/haikuports/haikuporter
  21. ---> Using cache
  22. ---> 7242e4f3357d
  23. Step 8 : RUN git clone https://github.com/haikuports/haikuports
  24. ---> Using cache
  25. ---> 5afd6dd6cf08
  26. Step 9 : RUN wget http://download.haiku-os.org/host-tools/haiku_host_tools-02202017-linux-x86_64.tar.xz -O /tmp/host-tools.tar.xz
  27. ---> Using cache
  28. ---> 0682550b38bf
  29. Step 10 : WORKDIR /usr/local
  30. ---> Using cache
  31. ---> 76559c464003
  32. Step 11 : RUN tar xvf /tmp/host-tools.tar.xz
  33. ---> Using cache
  34. ---> c96715aad341
  35. Step 12 : RUN ldconfig
  36. ---> Using cache
  37. ---> baac440c0200
  38. Step 13 : RUN echo "/usr/local/lib" > /etc/ld.so.conf.d/local-lib.conf
  39. ---> Using cache
  40. ---> f313cec0baec
  41. Step 14 : RUN echo "alias haikuporter='/app/haikuporter/haikuporter'" > /etc/profile.d/haikuporter-shell.sh
  42. ---> Using cache
  43. ---> 6d697990ec02
  44. Step 15 : RUN echo "alias builderctl='/app/haikuporter/buildmaster/builderctl -C /data'" >> /etc/profile.d/haikuporter-shell.sh
  45. ---> Using cache
  46. ---> 15e3421f396e
  47. Step 16 : RUN echo "alias createbuilder='/app/haikuporter/buildmaster/createbuilder -C /data'" >> /etc/profile.d/haikuporter-shell.sh
  48. ---> Running in edaac98d4aa9
  49. ---> abbfd9e6dd2a
  50. Removing intermediate container edaac98d4aa9
  51. Step 17 : WORKDIR /data
  52. ---> Running in 7d172396bfbf
  53. ---> b4bc36d10361
  54. Removing intermediate container 7d172396bfbf
  55. Step 18 : RUN mkdir -p /data
  56. ---> Running in 310a7fc55828
  57. ---> bec0da54a0ac
  58. Removing intermediate container 310a7fc55828
  59. Step 19 : VOLUME ['/data']
  60. ---> Running in 7238d053d011
  61. ---> c9bdd8c6283e
  62. Removing intermediate container 7238d053d011
  63. Successfully built c9bdd8c6283e
  64. kallisti5@nyx buildmaster :) $ docker run -it haikuporter:latest /bin/bash
  65. [root@9f31f07dbea4 data]# haikuporter
  66. Error: Unable to find haikuports.conf in known search paths.
  67. Error: See haikuports-sample.conf for more information
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement