Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to build the monograph image on arm64:
- 1) Within the NotesNook project directory create another directory called "monograph-build" see directory structure:
- monograph-build/
- ├── Dockerfile
- └── output/
- 2) Create another directory inside the "monograph-build" directory called "output"
- #####
- mkdir output/
- #####
- 3) Create a Dockerfile with the following content:
- __
- FROM oven/bun:1.2.2-alpine
- RUN mkdir -p /home/bun/app && chown -R bun:bun /home/bun/app
- WORKDIR /home/bun/app
- USER bun
- COPY --chown=bun:bun output .
- RUN bun install
- CMD [ "bun", "run", "start" ]
- __
- 4) Extract the files from the official "streetwriters/monograph:latest" docker image:
- NOTE: Make sure you are in the "monograph-build" directory while executing those commands in step 4
- 1> create a temp container from the image:
- #####
- docker create --name temp_container streetwriters/monograph:latest
- #####
- 2> copy the contents of the image that is running the container to the output directory
- #####
- docker cp temp_container:/home/bun/app/. ./output/
- #####
- 3> delete the temp container as we are done with it
- #####
- docker rm temp_container
- #####
- Note: the output/ directory has the extracted contents.
- monograph-build/
- ├── Dockerfile
- └── output/
- ├── build/
- ├── nodemodules/
- ├── bun.lock
- ├── package.json
- └── server.ts
- This is my final directory structure:
- NotesNook/
- ├── monograph-build/
- │ ├── output/
- │ └── Dockerfile
- ├── docker-compose.yml
- └── .env
- 5) Update the docker compose if you haven't already
- __
- monograph-server:
- build:
- context: ./monograph-build
- image: monograph-arm64:latest
- pullpolicy: never
- # rest of your configuration
- __
- 6) Start the containers
- #####
- docker compose up -d
- #####
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement