We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d40677e commit 97ce64aCopy full SHA for 97ce64a
Dockerfile
@@ -22,6 +22,12 @@ RUN apk add \
22
libxml2-dev \
23
libxslt-dev
24
25
+# fixes "sockets" compilation issues
26
+# sendrecvmsg.c:128:19: error: invalid application of 'sizeof' to incomplete type 'struct cmsgcred'
27
+#
28
+# see https://github.com/docker-library/php/issues/1245#issuecomment-1019957169
29
+ENV CFLAGS="$CFLAGS -D_GNU_SOURCE"
30
+
31
RUN docker-php-ext-install \
32
bz2 \
33
calendar \
0 commit comments