Skip to content

Commit 1af752c

Browse files
committed
test(docker-compose): test more tools
1 parent 4789e67 commit 1af752c

File tree

2 files changed

+21
-1
lines changed

2 files changed

+21
-1
lines changed

latex/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ SHELL ["/bin/ash", "-euo", "pipefail", "-c"]
1414
# hadolint ignore=DL3019
1515
RUN apk -U upgrade \
1616
&& apk add \
17+
# FIXME biber=2.21-r0 \
1718
coreutils=9.7-r1 \
1819
curl=8.14.1-r1 \
1920
git=2.49.1-r0 \

latex/docker-compose.test.yml

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,23 @@ services:
44
build:
55
context: .
66
dockerfile: Dockerfile
7-
command: "sh -c '[ $$(id -u) -eq 1000 ] && latexmk --version'"
7+
command: |
8+
sh -c '
9+
set -euo pipefail
10+
if [ $(id -u) -ne 1000 ]; then
11+
exit 1
12+
fi
13+
base64 --version # coreutils
14+
# FIXME biber --version # biber
15+
chktex --version # chktex
16+
curl --version # curl
17+
dvips --version # texlive
18+
git --version # git
19+
gs --version # ghostscript
20+
lacheck --version # lacheck
21+
latexmk --version # latexmk
22+
make --version # make
23+
pdftex --version # texlive
24+
pip --version # py3-pip
25+
python --version # python3
26+
'

0 commit comments

Comments
 (0)