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 4396d78 commit 2f7d163Copy full SHA for 2f7d163
alpine/Dockerfile
@@ -22,6 +22,7 @@ RUN set -x \
22
make \
23
openssl \
24
openssl-dev \
25
+ patch \
26
perl \
27
perl-io-socket-ssl \
28
perl-utils \
@@ -35,7 +36,9 @@ RUN set -x \
35
36
&& cd /usr/src/memcached \
37
\
38
# https://github.com/docker-library/memcached/issues/71#issuecomment-937067759 🙈
- && sed -i -e '/cdefs/d' queue.h \
39
+ && wget -O cdefs.patch 'https://github.com/memcached/memcached/commit/7e570c789f4473354461e6eeb8bb7a283df613bf.patch' \
40
+ && patch -p1 --input=cdefs.patch \
41
+ && rm cdefs.patch \
42
43
&& ./configure \
44
--build="$gnuArch" \
0 commit comments