diff --git a/.github/workflows/manylinux2014-openssl.Dockerfile b/.github/workflows/manylinux2014-openssl.Dockerfile index e708cddfe..687f505aa 100644 --- a/.github/workflows/manylinux2014-openssl.Dockerfile +++ b/.github/workflows/manylinux2014-openssl.Dockerfile @@ -2,6 +2,9 @@ FROM quay.io/pypa/manylinux2014_x86_64 ARG OPENSSL_VERSION LABEL com.aerospike.clients.openssl-version=$OPENSSL_VERSION +RUN useradd nonroot +USER nonroot + # https://computingforgeeks.com/how-to-install-openssl-3-x-on-centos-rhel-7/ RUN yum install -y perl-Text-Template.noarch perl-IPC-Cmd perl-Test-Simple wget @@ -19,9 +22,6 @@ ARG OPENSSL_INSTALL_DIR=/opt/openssl3 RUN ./Configure --prefix=$OPENSSL_INSTALL_DIR --openssldir=/etc/opt/openssl3 RUN make -RUN useradd nonroot -USER nonroot - RUN make test USER root