12 lines
333 B
Docker
12 lines
333 B
Docker
FROM openjdk:11-jre-buster
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
#Required to install Libreoffice 7
|
|
RUN echo "deb http://deb.debian.org/debian buster-backports main" >> /etc/apt/sources.list
|
|
|
|
RUN apt update && apt -y install locales-all fontconfig libxt6 libxrender1
|
|
RUN apt update && apt -y install -t buster-backports libreoffice
|
|
|