commit a69931c155ca1e36f95294f57cf2cf35e7626787 parent d5e98430aaada4b4099d742da6aadd82f123023e Author: krasjet Date: 2020-03-27 23:05Z temporarily remove dvisvgm build Diffstat:
M | Dockerfile | | | 65 | +++++++++++++++++++++++++++++++++-------------------------------- |
1 file changed, 33 insertions(+), 32 deletions(-)
diff --git a/Dockerfile b/Dockerfile @@ -1,34 +1,35 @@ -# --- build dvisvgm --- -FROM ubuntu:19.10 AS build-dvisvgm - -ENV DEBIAN_FRONTEND=noninteractive - -RUN apt-get update && apt-get install --no-install-recommends -yq \ - autotools-dev \ - libfreetype6-dev \ - libgs-dev \ - libkpathsea-dev \ - libz-dev \ - python-lxml \ - asciidoc \ - xmlto \ - xsltproc \ - g++ \ - ca-certificates \ - git \ - autoconf \ - automake \ - libtool - -WORKDIR /build - -# we need a newer version of dvisvgm for ghostscript compatibility and the -# exact-bbox option. This might not be needed when texlive-2020 is released -RUN git clone -b 2.9.1 https://github.com/mgieseki/dvisvgm.git -RUN cd dvisvgm/ && \ - ./autogen.sh && \ - ./configure --prefix="/build/" --enable-bundled-libs && \ - make install +# Probably no longer needed +# # --- build dvisvgm --- +# FROM ubuntu:19.10 AS build-dvisvgm + +# ENV DEBIAN_FRONTEND=noninteractive + +# RUN apt-get update && apt-get install --no-install-recommends -yq \ +# autotools-dev \ +# libfreetype6-dev \ +# libgs-dev \ +# libkpathsea-dev \ +# libz-dev \ +# python-lxml \ +# asciidoc \ +# xmlto \ +# xsltproc \ +# g++ \ +# ca-certificates \ +# git \ +# autoconf \ +# automake \ +# libtool + +# WORKDIR /build + +# # we need a newer version of dvisvgm for ghostscript compatibility and the +# # exact-bbox option. This might not be needed when texlive-2020 is released +# RUN git clone -b 2.9.1 https://github.com/mgieseki/dvisvgm.git +# RUN cd dvisvgm/ && \ +# ./autogen.sh && \ +# ./configure --prefix="/build/" --enable-bundled-libs && \ +# make install # --- build dependencies --- FROM fpco/stack-build-small:lts-14.27 AS dependencies @@ -76,6 +77,6 @@ WORKDIR /app COPY --from=build-karasu /build/bin/karasu /app/ COPY --from=build-karasu /build/templates/ /app/templates/ # use pre-compiled dvisvgm -COPY --from=build-dvisvgm /build/bin/dvisvgm /usr/bin/dvisvgm +# COPY --from=build-dvisvgm /build/bin/dvisvgm /usr/bin/dvisvgm ENTRYPOINT /app/karasu