File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -12,22 +12,22 @@ RUN apk add --no-cache ca-certificates git build-base cmake autoconf automake co
12
12
cd /src/wolfssl && \
13
13
/src/wolfssl/autogen.sh && \
14
14
/src/wolfssl/configure --prefix=/usr --enable-curl --disable-oldtls --enable-quic --enable-ech --enable-psk --enable-session-ticket --enable-earlydata --disable-shared --enable-static && \
15
- make && \
16
- make install && \
15
+ make -j "$(nproc)" && \
16
+ make -j "$(nproc)" install && \
17
17
\
18
18
git clone --recursive --branch "$NGH3_VERSION" https://github.com/ngtcp2/nghttp3 /src/nghttp3 && \
19
19
cd /src/nghttp3 && \
20
20
autoreconf -fi && \
21
21
/src/nghttp3/configure --prefix=/usr --enable-lib-only --disable-shared --enable-static && \
22
- make && \
23
- make install && \
22
+ make -j "$(nproc)" && \
23
+ make -j "$(nproc)" install && \
24
24
\
25
25
git clone --recursive --branch "$NGTCP2_VERSION" https://github.com/ngtcp2/ngtcp2 /src/ngtcp2 && \
26
26
cd /src/ngtcp2 && \
27
27
autoreconf -fi && \
28
28
/src/ngtcp2/configure --prefix=/usr --with-wolfssl --enable-lib-only --disable-shared --enable-static && \
29
- make && \
30
- make install && \
29
+ make -j "$(nproc)" && \
30
+ make -j "$(nproc)" install && \
31
31
\
32
32
mkdir /src/curl && \
33
33
wget "https://curl.se/download/curl-$CURL_VERSION.tar.gz" -O - | tar xz -C /src/curl --strip-components=1 && \
You can’t perform that action at this time.
0 commit comments