Skip to content

Commit a86ae2b

Browse files
committed
fix: wrong make openssl targets
1 parent fe530ed commit a86ae2b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docker/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,8 @@ RUN set -eux \
115115
&& env CC=musl-gcc ./Configure no-shared no-zlib -fPIC --prefix=/usr/local/musl -DOPENSSL_NO_SECURE_MEMORY linux-x86_64 \
116116
&& env C_INCLUDE_PATH=/usr/local/musl/include/ make depend \
117117
&& env C_INCLUDE_PATH=/usr/local/musl/include/ make \
118-
&& make install \
118+
&& make install_sw \
119+
&& make install_ssldirs \
119120
&& rm /usr/local/musl/include/linux /usr/local/musl/include/asm /usr/local/musl/include/asm-generic \
120121
&& openssl version \
121122
&& rm -r /tmp/* \
@@ -129,8 +130,7 @@ RUN set -eux \
129130
&& cd "zlib-${ZLIB_VERSION}" \
130131
&& env CC=musl-gcc ./configure --static --prefix=/usr/local/musl \
131132
&& make \
132-
&& make install_sw \
133-
&& make install_ssldirs \
133+
&& make install \
134134
&& rm -r /tmp/* \
135135
&& true
136136

0 commit comments

Comments
 (0)