Skip to content

Commit e291bca

Browse files
authored
Update Dockerfile
Signed-off-by: Zoey <[email protected]>
1 parent 3cc7a78 commit e291bca

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@ RUN apk upgrade --no-cache -a && \
1313
git clone --recursive --branch "$WS_VERSION" https://github.com/wolfSSL/wolfssl /src/wolfssl && \
1414
cd /src/wolfssl && \
1515
/src/wolfssl/autogen.sh && \
16-
/src/wolfssl/configure --prefix=/usr --enable-curl --disable-oldtls --enable-quic --enable-ech --enable-psk --enable-session-ticket --enable-earlydata --disable-shared --enable-static && \
17-
CFLAGS="-DWOLFSSL_NO_ASN_STRICT" make -j "$(nproc)" && \
16+
/src/wolfssl/configure CFLAGS="-DWOLFSSL_NO_ASN_STRICT" --prefix=/usr/local --enable-curl --disable-oldtls --enable-quic --enable-ech --enable-psk --enable-session-ticket --enable-earlydata --disable-shared --enable-static && \
17+
make -j "$(nproc)" && \
1818
make -j "$(nproc)" install && \
1919
\
2020
git clone --recursive --branch "$NGH3_VERSION" https://github.com/ngtcp2/nghttp3 /src/nghttp3 && \
2121
cd /src/nghttp3 && \
2222
autoreconf -fi && \
23-
/src/nghttp3/configure --prefix=/usr --enable-lib-only --disable-shared --enable-static && \
23+
/src/nghttp3/configure --prefix=/usr/local --enable-lib-only --disable-shared --enable-static && \
2424
make -j "$(nproc)" && \
2525
make -j "$(nproc)" install && \
2626
\
2727
git clone --recursive --branch "$NGTCP2_VERSION" https://github.com/ngtcp2/ngtcp2 /src/ngtcp2 && \
2828
cd /src/ngtcp2 && \
2929
autoreconf -fi && \
30-
/src/ngtcp2/configure --prefix=/usr --with-wolfssl --enable-lib-only --disable-shared --enable-static && \
30+
/src/ngtcp2/configure --prefix=/usr/local --with-wolfssl --enable-lib-only --disable-shared --enable-static && \
3131
make -j "$(nproc)" && \
3232
make -j "$(nproc)" install && \
3333
\

0 commit comments

Comments
 (0)