From fcd030dd0c46874a074d37869cacada5435b7793 Mon Sep 17 00:00:00 2001 From: Daniil Romanov <92098684+DaniilRomanov@users.noreply.github.com> Date: Tue, 29 Mar 2022 15:51:43 +0300 Subject: [PATCH] Update Dockerfile.ci Fixed severe typo. --- Dockerfile.ci | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.ci b/Dockerfile.ci index 8a1a1355..bd2367dd 100644 --- a/Dockerfile.ci +++ b/Dockerfile.ci @@ -127,7 +127,7 @@ RUN test "x${MRI_DEPS}" = "x" || sudo dnf install -y ${MRI_DEPS} ARG OPENSSL_SRC_PATH=/home/${USER_NAME}/openssl_1_1_1 ARG OPENSSL_INSTALL_PATH=/usr/local/opt/openssl RUN git clone -b OpenSSL_1_1_1-stable --single-branch https://github.com/openssl/openssl.git ${OPENSSL_SRC_PATH} \ - && cd ${OPENSSL_SRC_PATH_PATH} \ + && cd ${OPENSSL_SRC_PATH} \ && ./config --prefix=${OPENSSL_INSTALL_PATH} \ && make \ && sudo make install