-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new abcm2ps version; cleaning Noten pdfs
- Loading branch information
1 parent
a0eefc6
commit a83bdbc
Showing
2 changed files
with
27 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,21 @@ | ||
FROM ubuntu:bionic as abcm2ps_builder | ||
|
||
RUN apt-get update \ | ||
&& apt-get install --no-install-recommends -y \ | ||
make \ | ||
gcc \ | ||
libc6-dev \ | ||
&& apt-get clean | ||
|
||
WORKDIR /tmp/ | ||
ADD https://github.com/leesavide/abcm2ps/archive/v8.14.1.tar.gz abcm2ps-8.14.1.tar.gz | ||
RUN tar -xf abcm2ps-8.14.1.tar.gz | ||
|
||
WORKDIR /tmp/abcm2ps-8.14.1/ | ||
RUN ./configure | ||
RUN make install | ||
|
||
|
||
FROM ubuntu:bionic | ||
LABEL maintainer="[email protected]" | ||
LABEL description="A docker image for build the Pfadiralala IV VCP Kurhessen (german scouts) songbook." | ||
|
@@ -6,17 +24,18 @@ LABEL version="1.0" | |
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y \ | ||
&& apt-get install --no-install-recommends -y \ | ||
texlive-latex-base \ | ||
texlive-latex-extra \ | ||
texlive-fonts-recommended \ | ||
texlive-extra-utils \ | ||
texlive-lang-german \ | ||
xzdec \ | ||
abcm2ps \ | ||
ghostscript \ | ||
make \ | ||
&& apt-get clean | ||
|
||
RUN mkdir /PfadiralalaIV | ||
WORKDIR /PfadiralalaIV | ||
WORKDIR /PfadiralalaIV | ||
|
||
COPY --from=abcm2ps_builder /usr/local/bin/abcm2ps /usr/local/bin/ |