We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 740e8ca commit cad6d45Copy full SHA for cad6d45
.travis.yml
@@ -2,5 +2,7 @@ language: java
2
3
jdk: oraclejdk11
4
5
+install: sudo apt-get install texlive-full
6
+
7
notifications:
8
email: false
docker/devel-gui.Dockerfile
@@ -4,6 +4,10 @@ RUN mkdir /app
WORKDIR /app
+# This is a workaround to bypass the tzdata prompts
+ENV TZ=Europe/Paris
9
+RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
10
11
RUN apt-get update && apt-get install -y --no-install-recommends \
12
wget \
13
git \
@@ -12,6 +16,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
16
openjdk-8-jdk \
17
maven \
14
18
unzip \
19
+ texlive-full \
15
20
&& \
21
apt-get clean && \
22
rm -rf /var/lib/apt/lists/*
0 commit comments