File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ RUN usermod -d /home www-data \
7
7
&& chown www-data:www-data /home \
8
8
# -slim images strip man dirs, but java won't install unless this dir exists.
9
9
&& mkdir -p /usr/share/man/man1 \
10
+ && echo "deb http://deb.debian.org/debian bookworm-backports main" > /etc/apt/sources.list.d/backports.list \
10
11
&& apt-get update \
11
12
# HACK: work around bug in install java (dep of libreoffice)
12
13
&& apt-get install -y ca-certificates-java \
@@ -32,10 +33,15 @@ RUN usermod -d /home www-data \
32
33
freecad \
33
34
# pspp dependencies
34
35
pspp \
35
- # unoconv dependencies
36
- libreoffice \
37
36
# grab gosu for easy step-down from root
38
37
gosu \
38
+ # unoconv dependencies
39
+ && apt-get -t bookworm-backports install -y \
40
+ libreoffice-core \
41
+ libreoffice-writer \
42
+ libreoffice-calc \
43
+ libreoffice-impress \
44
+ libreoffice-java-common \
39
45
&& apt-get clean \
40
46
&& apt-get autoremove -y \
41
47
&& rm -rf /var/lib/apt/lists/*
You can’t perform that action at this time.
0 commit comments