Skip to content

Commit

Permalink
openssl static
Browse files Browse the repository at this point in the history
  • Loading branch information
BotellaA committed Jul 5, 2024
1 parent f6dee92 commit c18c0eb
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,19 @@ RUN \
yum install -y epel-release yum-utils && \
curl -sL https://rpm.nodesource.com/setup_20.x | bash - && \
yum update -y && \
yum install -y dnf wget ninja-build zstd valgrind-devel nodejs openssl-devel && \
yum install -y dnf wget ninja-build zstd valgrind-devel nodejs perl-IPC-Cmd && \
dnf install -y 'dnf-command(config-manager)' && \
dnf config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo && \
dnf install -y gh

RUN \
wget https://www.openssl.org/source/openssl-3.3.1.tar.gz && \
tar -xzf openssl-3.3.1.tar.gz && \
cd openssl-3.3.1 && \
./config no-shared no-comp && \
make -j && make install && \
cd .. && rm -rf openssl-3.3.1*

# Set environment variables.
ENV HOME /root

Expand Down

0 comments on commit c18c0eb

Please sign in to comment.