40f79c28b1
* Add cmake function to create standalone binary * Mention licenses used by dependencies in the LICENSE file * Add test cases for standalone binary by adding --call-binary option for pytest * Docker compose file to create standalone binary in standardized RHEL 8 environment * Add README instructions on how to create and test standalone binary * Move docker files from utils to docker folder; Add standalone binary testing instructions * Add CHANGELOG statement * Use different service names in docker compose files * Use volume mounting in docker files
19 lines
495 B
Docker
19 lines
495 B
Docker
FROM redhat/ubi8:8.10-1184
|
|
|
|
WORKDIR /app
|
|
|
|
RUN yum install -y curl gcc cmake
|
|
|
|
RUN yum install -y python38 python38-devel && \
|
|
yum clean all && \
|
|
rm -rf /var/cache/yum && \
|
|
curl -sS https://bootstrap.pypa.io/get-pip.py -o get-pip.py && \
|
|
python3.8 get-pip.py
|
|
|
|
CMD ["/bin/bash", "-c", "\
|
|
python3.8 -m pip install -r requirements.txt \
|
|
&& python3.8 -m pip install nuitka patchelf \
|
|
&& rm -rf build \
|
|
&& cmake -B build -S . \
|
|
&& make -C build standalonebinary \
|
|
"] |