source: ntrip/trunk/BNC/docker/Dockerfile.ubi8@ 10281

Last change on this file since 10281 was 10281, checked in by wiese, 5 months ago

CHANGE: update Dockerfiles, add bookworm

File size: 549 bytes
Line 
1FROM redhat/ubi8:8.6
2
3RUN dnf -y update
4RUN dnf -y install gcc-c++ libpng-devel openssl-devel unzip
5RUN dnf -y install \
6 qt5-qtbase-devel \
7 qt5-qtsvg-devel \
8 qt5-qtwebkit-devel \
9 qt5-qtwebengine-devel
10
11COPY bnc_plugin.pro bnc.pro /tmp/BNC/
12COPY newmat /tmp/BNC/newmat/
13COPY qwt /tmp/BNC/qwt/
14COPY qwtpolar /tmp/BNC/qwtpolar/
15COPY src /tmp/BNC/src/
16
17WORKDIR /tmp/BNC
18RUN qmake-qt5 bnc.pro && make
19
20RUN echo '/tmp/BNC/bnc created'
21#RUN ./bnc --version # exit-code: 2 (#171)
22RUN cat /etc/*release && gcc --version && qmake-qt5 --version
Note: See TracBrowser for help on using the repository browser.