Compare commits
No commits in common. "0067dcaf5af7ab3fe6618f65acf2bf285ab2990a" and "a32901dc3ae18b64d460cd14964ce8c5e3233abf" have entirely different histories.
0067dcaf5a
...
a32901dc3a
|
@ -3,11 +3,6 @@ type: docker
|
||||||
name: build
|
name: build
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: generate-tags
|
|
||||||
image: node
|
|
||||||
commands:
|
|
||||||
- echo -n "$(date +'%Y-%m-%d_%H-%M'), latest" > .tags
|
|
||||||
|
|
||||||
- name: docker
|
- name: docker
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
depends_on:
|
depends_on:
|
||||||
|
@ -18,6 +13,8 @@ steps:
|
||||||
password:
|
password:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
repo: kingofdog/pandoc-latex
|
repo: kingofdog/pandoc-latex
|
||||||
|
tags:
|
||||||
|
- latest
|
||||||
#- name: docker-arm64
|
#- name: docker-arm64
|
||||||
# image: plugins/docker
|
# image: plugins/docker
|
||||||
# depends_on:
|
# depends_on:
|
||||||
|
|
23
Dockerfile
23
Dockerfile
|
@ -1,7 +1,7 @@
|
||||||
FROM texlive/texlive:latest
|
FROM debian:bullseye-slim
|
||||||
|
|
||||||
ARG PANDOC_VERSION=3.1.4
|
ARG PANDOC_VERSION=3.0.1
|
||||||
ARG PANDOC_CROSSREF_VERSION=v0.3.16.0b
|
ARG PANDOC_CROSSREF_VERSION=v0.3.15.0
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
RUN apt-get clean
|
RUN apt-get clean
|
||||||
|
@ -19,7 +19,18 @@ RUN mv pandoc-${PANDOC_VERSION}/bin/* /usr/bin/ \
|
||||||
&& mv pandoc-crossref /usr/bin/ \
|
&& mv pandoc-crossref /usr/bin/ \
|
||||||
&& cd .. \
|
&& cd .. \
|
||||||
&& rm -rf download
|
&& rm -rf download
|
||||||
RUN apt-get install -y python3-pygments python3-pip inkscape
|
RUN apt-get install -y \
|
||||||
RUN tlmgr update --self --all
|
git \
|
||||||
RUN tlmgr install tools ragged2e
|
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/*
|
RUN rm -rf /var/lib/apt/lists/*
|
||||||
|
|
Loading…
Reference in New Issue
Block a user