Skip to content

Commit e6ec076

Browse files
committed
Dockerfile: JDK 8u242, ant 1.10.7, pandoc 2.9.2
1 parent d98575a commit e6ec076

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# doc
2-
FROM openjdk:8u212-b04-jdk-stretch
2+
FROM openjdk:8u242-jdk-stretch
33

44
# Default to UTF-8 file.encoding
55
ENV LANG C.UTF-8
@@ -13,7 +13,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
1313
pandoc=1.17.2~dfsg-3 \
1414
&& rm -rf /var/lib/apt/lists/*
1515

16-
ENV ANT_VERSION=1.10.3
16+
ENV ANT_VERSION=1.10.7
1717
ENV ANT_HOME=/opt/ant
1818

1919
# change to tmp folder
@@ -34,7 +34,7 @@ RUN wget -q --no-check-certificate --no-cookies http://archive.apache.org/dist/a
3434
RUN update-alternatives --install "/usr/bin/ant" "ant" "/opt/ant/bin/ant" 1 && \
3535
update-alternatives --set "ant" "/opt/ant/bin/ant"
3636

37-
ENV PANDOC_VERSION=2.7.3
37+
ENV PANDOC_VERSION=2.9.2
3838
RUN wget -q --no-check-certificate --no-cookies https://github.com/jgm/pandoc/releases/download/${PANDOC_VERSION}/pandoc-${PANDOC_VERSION}-1-amd64.deb \
3939
&& dpkg -i pandoc-${PANDOC_VERSION}-1-amd64.deb \
4040
&& rm -f pandoc-${PANDOC_VERSION}-1-amd64.deb

0 commit comments

Comments
 (0)