File tree Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Expand file tree Collapse file tree 1 file changed +6
-11
lines changed Original file line number Diff line number Diff line change 11
2+ ---
3+
24# Arch Linux Without the Beeps
35
46This repository provides a customized Arch Linux ISO with the system beeps disabled, ideal for users who prefer a quieter environment.
@@ -37,13 +39,13 @@ Make sure you have Docker installed on your system.
3739 docker build -t arch-iso-builder .
3840 ```
3941
40- 3 . ** Build the ISO in the container**
42+ 3 . ** Build the ISO in the container** :
4143
4244 Build the ISO with this command:
4345
44- ''' bash
46+ ``` bash
4547 docker run --rm --privileged -v $( pwd) :/workdir arch-iso-builder bash -c " mkarchiso -v -w workdir/ -o out/ ."
46- '''
48+ ```
4749
48504 . ** Retrieve the ISO** :
4951
@@ -67,13 +69,6 @@ WORKDIR /workdir
6769# Copy the entire repository into the container
6870COPY . .
6971
70- # Build the Arch ISO
71- RUN mkarchiso -v -w workdir/ -o out/ .
72-
73- # Rename the generated ISO to Arch.iso (if only one ISO is generated)
74- RUN iso_file=$(ls out/*.iso | head -n 1) && \
75- mv $iso_file out/Arch.iso
76-
7772# Set the output directory as a volume so you can retrieve the ISO later
7873VOLUME /workdir/out
7974
@@ -169,7 +164,7 @@ jobs:
169164 tag_name : v${{ steps.date.outputs.date }}-release
170165 release_name : ${{ steps.date.outputs.date }}
171166 body : |
172- This release contains the Arch Linux ISO built on ${{ steps.date.outputs.date }}
167+ This release contains the Arch Linux ISO built on ${{ steps.date.outputs.date }}.
173168 draft : false
174169 prerelease : false
175170
You can’t perform that action at this time.
0 commit comments