Compare commits

..

No commits in common. "0067dcaf5af7ab3fe6618f65acf2bf285ab2990a" and "a32901dc3ae18b64d460cd14964ce8c5e3233abf" have entirely different histories.

2 changed files with 19 additions and 11 deletions

View File

@ -3,11 +3,6 @@ type: docker
name: build
steps:
- name: generate-tags
image: node
commands:
- echo -n "$(date +'%Y-%m-%d_%H-%M'), latest" > .tags
- name: docker
image: plugins/docker
depends_on:
@ -18,6 +13,8 @@ steps:
password:
from_secret: docker_password
repo: kingofdog/pandoc-latex
tags:
- latest
#- name: docker-arm64
# image: plugins/docker
# depends_on:

View File

@ -1,7 +1,7 @@
FROM texlive/texlive:latest
FROM debian:bullseye-slim
ARG PANDOC_VERSION=3.1.4
ARG PANDOC_CROSSREF_VERSION=v0.3.16.0b
ARG PANDOC_VERSION=3.0.1
ARG PANDOC_CROSSREF_VERSION=v0.3.15.0
ARG DEBIAN_FRONTEND=noninteractive
RUN apt-get clean
@ -19,7 +19,18 @@ RUN mv pandoc-${PANDOC_VERSION}/bin/* /usr/bin/ \
&& mv pandoc-crossref /usr/bin/ \
&& cd .. \
&& rm -rf download
RUN apt-get install -y python3-pygments python3-pip inkscape
RUN tlmgr update --self --all
RUN tlmgr install tools ragged2e
RUN apt-get install -y \
git \
texlive-latex-recommended \
latexmk \
texlive-xetex \
texlive-science \
texlive-pictures \
biber \
texlive-bibtex-extra \
texlive-extra-utils \
python3-pygments \
python3-pip \
inkscape
RUN python3 -m pip install --upgrade pygments
RUN rm -rf /var/lib/apt/lists/*