Skip to content

Commit

Permalink
Merge pull request #6 from peaqnetwork/fix/dockerfile-curl
Browse files Browse the repository at this point in the history
fix(dockerfile): add option to curl to follow redirection
  • Loading branch information
DocteurPing authored Nov 21, 2024
2 parents 375b089 + 8b7d481 commit 4d29974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build-image/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ RUN apt-get update && \

ENV SSL_VERSION=1.0.2u

RUN curl https://www.openssl.org/source/openssl-$SSL_VERSION.tar.gz -O && \
RUN curl -L https://www.openssl.org/source/openssl-$SSL_VERSION.tar.gz -O && \
tar -xzf openssl-$SSL_VERSION.tar.gz && \
cd openssl-$SSL_VERSION && ./config && make depend && make install && \
cd .. && rm -rf openssl-$SSL_VERSION*
Expand Down

0 comments on commit 4d29974

Please sign in to comment.