Skip to content

Commit 827a0db

Browse files
authored
chore: add docker image (#1)
- add Dockerfile. - use CI to build an official `ghcr.io/openxiangshan/docs-utils` image. - then we can use the pre-built image in CI of the target repo to speed up the build (Run `./utils/dependency.sh` takes ~70s -> pull image takes ~20s). Refer to [official doc](https://docs.github.com/zh/actions/writing-workflows/choosing-where-your-workflow-runs/running-jobs-in-a-container). Also: - fix typo in README.md
1 parent ed775a2 commit 827a0db

File tree

4 files changed

+89
-3
lines changed

4 files changed

+89
-3
lines changed

.github/workflows/build-docker.yml

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
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 }}

Dockerfile

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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" ]

README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,18 @@ The script `dependency.sh` sets up the environment for pandoc builds.
1818
- Other dependencies:
1919
- librsvg2-bin for SVG processing
2020

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+
2133
### Pandoc Template
2234

2335
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
4759

4860
### MkDocs building environment requirements
4961

50-
The script `requirements.sh` defines requirements for MkDocs building.
62+
The script `requirements.txt` defines requirements for MkDocs building.
5163

5264
- [MkDocs-Material](https://squidfunk.github.io/mkdocs-material/)
5365
- Python-Markdown extensions:

dependency.sh

+18-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,27 @@
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+
111
mkdir -p ~/.local/bin
212
mkdir -p ~/.local/share/pandoc/filters
313
mkdir -p ~/.local/share/fonts
414

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
621

722
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
925

1026
wget https://github.com/lierdakil/pandoc-crossref/releases/download/v0.3.18.0/pandoc-crossref-Linux.tar.xz
1127
tar -xf pandoc-crossref-Linux.tar.xz -C ~/.local/bin

0 commit comments

Comments
 (0)