Skip to content

Commit

Permalink
fix openssl install
Browse files Browse the repository at this point in the history
  • Loading branch information
RogerZhongAWS committed Mar 28, 2024
1 parent 31a97f9 commit 6a9e5fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
5 changes: 2 additions & 3 deletions .github/docker-images/base-images/amazonlinux/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
FROM amazonlinux:2023 as base
ARG OPENSSL_CONFIG

# Install Prerequisites

Expand All @@ -16,8 +15,8 @@ RUN wget https://www.openssl.org/source/openssl-3.0.12.tar.gz \
&& tar xzvf openssl-3.0.12.tar.gz \
&& cd openssl-3.0.12 \
&& ./config \
&& make depend \
&& make all
&& make \
&& make install

WORKDIR /home/dependencies
RUN wget https://github.com/madler/zlib/archive/v1.2.13.tar.gz -O /tmp/zlib-1.2.13.tar.gz && \
Expand Down
4 changes: 2 additions & 2 deletions .github/docker-images/base-images/fedora/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ RUN wget https://www.openssl.org/source/openssl-3.0.12.tar.gz \
&& tar xzvf openssl-3.0.12.tar.gz \
&& cd openssl-3.0.12 \
&& ./config \
&& make depend \
&& make all
&& make \
&& make install

WORKDIR /home/dependencies
RUN wget https://github.com/madler/zlib/archive/v1.2.13.tar.gz -O /tmp/zlib-1.2.13.tar.gz && \
Expand Down
4 changes: 2 additions & 2 deletions .github/docker-images/base-images/ubi8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ RUN wget https://www.openssl.org/source/openssl-3.0.12.tar.gz \
&& tar xzvf openssl-3.0.12.tar.gz \
&& cd openssl-3.0.12 \
&& ./config \
&& make depend \
&& make all
&& make \
&& make install

WORKDIR /home/dependencies
RUN wget https://github.com/madler/zlib/archive/v1.2.13.tar.gz -O /tmp/zlib-1.2.13.tar.gz && \
Expand Down

0 comments on commit 6a9e5fb

Please sign in to comment.