We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c3588f commit d3a9c76Copy full SHA for d3a9c76
docker/debian/debian11.Dockerfile
@@ -12,9 +12,13 @@ RUN apt-get install -y \
12
13
RUN wget -q "https://packages.sury.org/php/apt.gpg" -O- | apt-key add -
14
RUN add-apt-repository "deb https://packages.sury.org/php/ $(lsb_release -sc) main"
15
+
16
+# Required for libck 0.7.1
17
+RUN add-apt-repository "deb https://deb.debian.org/debian bookworm main"
18
19
RUN apt-get update
20
-# Fix `php-config` link to `sed`
21
+# Fix `sed` link so `php-config` works
22
RUN ln -s /bin/sed /usr/bin/sed
23
24
RUN apt-get install -y \
0 commit comments