File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM alpine:3.11.6
2
2
3
3
RUN apk update && \
4
- apk add --no-cache texlive-full
4
+ apk add --no-cache texlive-full imagemagick ghostscript
5
5
6
6
WORKDIR /latex
Original file line number Diff line number Diff line change @@ -36,4 +36,12 @@ package:
36
36
texlive-full :
37
37
installed : true
38
38
versions :
39
- - 20190410-r6
39
+ - 20190410-r6
40
+ imagemagick :
41
+ installed : true
42
+ versions :
43
+ - 7.0.9.7-r0
44
+ ghostscript :
45
+ installed : true
46
+ versions :
47
+ - 9.50-r0
Original file line number Diff line number Diff line change @@ -5,7 +5,11 @@ apk update; apk add curl
5
5
curl -fsSL https://goss.rocks/install | sh
6
6
7
7
mkdir -p /latex/output && \
8
+ echo " Generate pdf with xelatex..." && \
8
9
cd /latex/output && \
9
10
xelatex /latex/doc.tex && \
11
+ echo " Generate pdf with xelatex... OK!" && \
10
12
cd /latex && \
11
- goss validate
13
+ echo " Run goss..." && \
14
+ goss validate --format documentation && \
15
+ echo " Run goss... OK!"
You can’t perform that action at this time.
0 commit comments