-
Notifications
You must be signed in to change notification settings - Fork 50
/
Dockerfile
27 lines (24 loc) · 1.22 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
FROM ubuntu:20.04
MAINTAINER Andre Richter <[email protected]>
ARG DEBIAN_FRONTEND=noninteractive
ARG BUILD_DATE
ARG VCS_REF
LABEL org.label-schema.build-date=$BUILD_DATE \
org.label-schema.vcs-url="https://github.com/TUM-LIS/tum-dissertation-latex.git" \
org.label-schema.vcs-ref=$VCS_REF \
org.label-schema.schema-version="1.1"
RUN set -x \
&& apt-get update -q -y \
&& apt-get install -q -y --no-install-recommends \
build-essential \
texlive \
texlive-formats-extra \
texlive-lang-german \
texlive-latex-extra \
texlive-science \
texlive-luatex \
latexmk \
inkscape \
&& apt-get autoremove -q -y \
&& apt-get clean -q -y \
&& rm -rf /var/lib/apt/lists/*