Skip to content

Commit 00dc43a

Browse files
committed
Update base image from Bullseye to Bookworm
wkhtmltopdf doesn't list a Bookworm download, but is listed under https://github.com/wkhtmltopdf/packaging/releases
1 parent 5b00554 commit 00dc43a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN set -x; \
77
&& tar xvf bookstack.tar.gz -C /bookstack --strip-components=1 \
88
&& rm bookstack.tar.gz
99

10-
FROM php:8.2-apache-bullseye as final
10+
FROM php:8.2-apache-bookworm as final
1111
RUN set -x; \
1212
apt-get update \
1313
&& apt-get install -y --no-install-recommends \
@@ -27,7 +27,7 @@ RUN set -x; \
2727
curl \
2828
libzip-dev \
2929
unzip \
30-
&& wget -O wkhtmltox.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-2/wkhtmltox_0.12.6.1-2.bullseye_amd64.deb \
30+
&& wget -O wkhtmltox.deb https://github.com/wkhtmltopdf/packaging/releases/download/0.12.6.1-3/wkhtmltox_0.12.6.1-3.bookworm_amd64.deb \
3131
&& chmod a+x ./wkhtmltox.deb \
3232
&& apt-get install -y ./wkhtmltox.deb \
3333
&& rm ./wkhtmltox.deb \

0 commit comments

Comments
 (0)