Advertisement
crowley69

Docker build monograph on arm64

Apr 2nd, 2025
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. How to build the monograph image on arm64:
  2.  
  3. 1) Within the NotesNook project directory create another directory called "monograph-build" see directory structure:
  4.  
  5. monograph-build/
  6. ├── Dockerfile
  7. └── output/
  8.  
  9.  
  10. 2) Create another directory inside the "monograph-build" directory called "output"
  11.  
  12. #####
  13. mkdir output/
  14. #####
  15.  
  16.  
  17. 3) Create a Dockerfile with the following content:
  18.  
  19. __
  20.  
  21. FROM oven/bun:1.2.2-alpine
  22.  
  23. RUN mkdir -p /home/bun/app && chown -R bun:bun /home/bun/app
  24.  
  25. WORKDIR /home/bun/app
  26.  
  27. USER bun
  28.  
  29. COPY --chown=bun:bun output .
  30.  
  31. RUN bun install
  32.  
  33. CMD [ "bun", "run", "start" ]
  34. __
  35.  
  36.  
  37. 4) Extract the files from the official "streetwriters/monograph:latest" docker image:
  38. NOTE: Make sure you are in the "monograph-build" directory while executing those commands in step 4
  39.  
  40. 1> create a temp container from the image:
  41.  
  42. #####
  43. docker create --name temp_container streetwriters/monograph:latest
  44. #####
  45.  
  46. 2> copy the contents of the image that is running the container to the output directory
  47.  
  48. #####
  49. docker cp temp_container:/home/bun/app/. ./output/
  50. #####
  51.  
  52. 3> delete the temp container as we are done with it
  53.  
  54. #####
  55. docker rm temp_container
  56. #####
  57.  
  58. Note: the output/ directory has the extracted contents.
  59.  
  60. monograph-build/
  61. ├── Dockerfile
  62. └── output/
  63. ├── build/
  64. ├── nodemodules/
  65. ├── bun.lock
  66. ├── package.json
  67. └── server.ts
  68.  
  69.  
  70. This is my final directory structure:
  71.  
  72. NotesNook/
  73. ├── monograph-build/
  74. │ ├── output/
  75. │ └── Dockerfile
  76. ├── docker-compose.yml
  77. └── .env
  78.  
  79.  
  80.  
  81. 5) Update the docker compose if you haven't already
  82.  
  83. __
  84.  
  85. monograph-server:
  86. build:
  87. context: ./monograph-build
  88. image: monograph-arm64:latest
  89. pullpolicy: never
  90. # rest of your configuration
  91. __
  92.  
  93.  
  94. 6) Start the containers
  95.  
  96. #####
  97. docker compose up -d
  98. #####
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement