Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docker/Dockerfile_spdk_base
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ RUN rm -rf /root/spdk
RUN dnf update -y && dnf upgrade -y && \
dnf install -y zlib-devel make gcc perl curl \
libcurl-devel libuuid-devel pulseaudio-libs-devel && \
wget https://www.openssl.org/source/openssl-3.5.6.tar.gz && \
tar -xvf openssl-3.5.6.tar.gz && \
cd openssl-3.5.6 && \
wget https://www.openssl.org/source/openssl-3.5.7.tar.gz && \
tar -xvf openssl-3.5.7.tar.gz && \
cd openssl-3.5.7 && \
./config && make -j"$(nproc)" && make install && \
echo /usr/local/lib64 > /etc/ld.so.conf.d/openssl.conf && ldconfig && \
cd .. && rm -rf openssl-3.5.6*
cd .. && rm -rf openssl-3.5.7*

# Clone + build AWS SDK
RUN git clone --recurse-submodules https://github.com/simplyblock-io/aws-sdk-cpp && \
Expand Down
Loading