* Remove dynamic memory usage from core * Refacor status check to use json pointers * Move access token to session * Remove code duplication * Fix compile warnings from rapidjson sources * Add 'interactive mode option to session configuration * Implement non interactive mode connector * Add 'non interactove' implementation * Apply rapidjson patch * Build on all cores * Rename build script * Split configure and build steps * Add scripts for building all images * Change bash to python for build scripts * Stop printing methods name in non interactive mode * Add trace log level, adn more params to init message * Fix build * Fix non interactive method selection and refactor vagrant files for debian like systems * Refactor log messages * Remove exces dependencies from vagrant configuration files * Fixed vagrantfiles * Added repo for rhel * Add nonInteractiveMode option * Added instalation script for pubkey * Fixed pubkey install script and postrm for rhel
15 lines
311 B
Docker
15 lines
311 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-devel-1.3.1-34.0.1.el8_10.x86_64.rpm
|
|
RUN rpm -Uvh pam*
|
|
|