* Add phone call authentication method * Remove dynamic mem allocation from error handler * Add more error handling code * Move error handling to different file * Remove Socket IO dependency * cleanup in websocket code * Add rapidjson as cmake dependency * Added Dockerfiles as primary build system for packages * Changed policy in CMakeList to work with lower version of CMake * Fix opensuse builds * Link filesystem library in gcc 8.5 or older
16 lines
430 B
Docker
16 lines
430 B
Docker
FROM redhat/ubi8
|
|
|
|
RUN yum update -y && yum install -y gcc \
|
|
openssl-devel \
|
|
libcurl-devel \
|
|
systemd-pam \
|
|
cmake \
|
|
rpm-build \
|
|
openssh-server \
|
|
gcc-c++ \
|
|
wget
|
|
RUN wget https://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/pam-1.3.1-34.0.1.el8_10.x86_64.rpm \
|
|
https://yum.oracle.com/repo/OracleLinux/OL8/baseos/latest/x86_64/getPackage/pam-devel-1.3.1-34.0.1.el8_10.x86_64.rpm
|
|
RUN rpm -Uvh pam*
|
|
|