File tree 4 files changed +89
-3
lines changed
4 files changed +89
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Build docker image
2
+
3
+ on :
4
+ push :
5
+ branches : [ master ]
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+ permissions :
11
+ contents : read
12
+ packages : write
13
+
14
+ steps :
15
+ - name : Checkout repository
16
+ uses : actions/checkout@v4
17
+
18
+ - name : Generate Docker metadata
19
+ id : metadata
20
+ uses : docker/metadata-action@v5
21
+ with :
22
+ images : |
23
+ ghcr.io/${{ github.repository }}
24
+ tags : |
25
+ latest
26
+ labels : |
27
+ maintainer=${{ github.repository_owner }}
28
+
29
+ - name : Set up QEMU
30
+ uses : docker/setup-qemu-action@v3
31
+
32
+ - name : Set up Docker Buildx
33
+ uses : docker/setup-buildx-action@v3
34
+
35
+ - name : Login to GitHub Container Registry
36
+ uses : docker/login-action@v3
37
+ with :
38
+ registry : ghcr.io
39
+ username : ${{ github.repository_owner }}
40
+ password : ${{ secrets.GITHUB_TOKEN }}
41
+
42
+ - name : Build and push
43
+ uses : docker/build-push-action@v6
44
+ with :
45
+ platforms : linux/amd64
46
+ push : true
47
+ tags : ${{ steps.metadata.outputs.tags }}
48
+ labels : ${{ steps.metadata.outputs.labels }}
Original file line number Diff line number Diff line change
1
+ FROM ubuntu:noble
2
+
3
+ COPY . /app
4
+ RUN /app/dependency.sh && \
5
+ apt clean && \
6
+ git config --global --add safe.directory /work
7
+
8
+ WORKDIR /work
9
+ ENV PATH="/root/.local/bin:/root/bin:${PATH}"
10
+ CMD [ "/bin/bash" ]
Original file line number Diff line number Diff line change @@ -18,6 +18,18 @@ The script `dependency.sh` sets up the environment for pandoc builds.
18
18
- Other dependencies:
19
19
- librsvg2-bin for SVG processing
20
20
21
+ ### Dockerfile
22
+
23
+ The ` Dockerfile ` is used to build the environment for pandoc builds.
24
+
25
+ Usage:
26
+ ``` bash
27
+ docker run --rm -it \
28
+ -v $( pwd) :/work \
29
+ ghcr.io/openxiangshan/docs-utils:latest \
30
+ make
31
+ ```
32
+
21
33
### Pandoc Template
22
34
23
35
Customized pandoc templates for HTML and LaTeX.
@@ -47,7 +59,7 @@ All Pandoc [Lua filters](https://pandoc.org/lua-filters.html) are located in `pa
47
59
48
60
# ## MkDocs building environment requirements
49
61
50
- The script `requirements.sh ` defines requirements for MkDocs building.
62
+ The script `requirements.txt ` defines requirements for MkDocs building.
51
63
52
64
- [MkDocs-Material](https://squidfunk.github.io/mkdocs-material/)
53
65
- Python-Markdown extensions :
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ set -e
4
+
5
+ if [ $( id -u) -eq 0 ]; then # for docker build, skip sudo if already root
6
+ SUDO=
7
+ else
8
+ SUDO=sudo
9
+ fi
10
+
1
11
mkdir -p ~ /.local/bin
2
12
mkdir -p ~ /.local/share/pandoc/filters
3
13
mkdir -p ~ /.local/share/fonts
4
14
5
- sudo apt-get install -y librsvg2-bin
15
+ export PATH=$PATH :~ /.local/bin
16
+
17
+ $SUDO apt update
18
+ $SUDO apt install -y \
19
+ wget xz-utils perl make git \
20
+ librsvg2-bin
6
21
7
22
wget https://github.com/jgm/pandoc/releases/download/3.4/pandoc-3.4-1-amd64.deb
8
- sudo dpkg -i pandoc-3.4-1-amd64.deb
23
+ $SUDO dpkg -i pandoc-3.4-1-amd64.deb
24
+ rm pandoc-3.4-1-amd64.deb
9
25
10
26
wget https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.18.0/pandoc-crossref-Linux.tar.xz
11
27
tar -xf pandoc-crossref-Linux.tar.xz -C ~ /.local/bin
You can’t perform that action at this time.
0 commit comments