2021-08-26 23:33:40 +08:00
|
|
|
FROM openjdk:11-jre-buster
|
2020-07-03 03:01:37 +08:00
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
2021-04-15 20:32:29 +08:00
|
|
|
|
|
|
|
#Required to install Libreoffice 7
|
|
|
|
RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list
|
|
|
|
|
2020-07-03 03:01:37 +08:00
|
|
|
RUN apt update
|
|
|
|
|
|
|
|
RUN apt -y install locales-all fontconfig libxt6 libxrender1
|
2021-04-15 20:32:29 +08:00
|
|
|
RUN apt install -y -t buster-backports libreoffice
|
2020-07-03 03:01:37 +08:00
|
|
|
|