We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a4305b4 commit d50d849Copy full SHA for d50d849
Dockerfile
@@ -51,15 +51,11 @@ RUN apt-get update -qq \
51
&& cd /tmp/php-uv \
52
&& phpize \
53
&& ./configure \
54
- && wget https://ftp.uni-stuttgart.de/pub/unix/mail/imap/c-client.tar.gz \
55
- && tar xzf c-client.tar.gz \
56
- && cd imap-2007f \
57
- && make lnp SSLTYPE=unix.nopwd EXTRACFLAGS=-fPIC \
58
- && mkdir -p /usr/local/include/imap \
59
- && cp c-client/*.h /usr/local/include/imap \
60
- && cp c-client/c-client.a /usr/local/lib/libc-client.a \
61
&& make -j$(nproc) \
62
&& make install \
+ && git clone --depth 1 --branch imap-2007f https://github.com/uw-imap/imap.git \
+ && cd imap \
+ && make
63
&& apt-get dist-upgrade -y \
64
&& apt-get clean \
65
&& apt-get autoremove -y \
0 commit comments