source: ntrip/trunk/BNC/docker/Dockerfile.leap@ 9759

Last change on this file since 9759 was 9759, checked in by wiese, 23 months ago

ADD: dockerfiles

File size: 569 bytes
Line 
1FROM opensuse/leap:15.3
2
3RUN zypper -n update
4RUN zypper -n in gcc-c++ libpng-devel libopenssl-devel unzip
5RUN zypper -n in \
6 libQt5Concurrent-devel \
7 libQt5Network-devel \
8 libQt5PrintSupport-devel \
9 libqt5-qtsvg-devel \
10 libQt5OpenGL-devel
11
12COPY bnc_plugin.pro bnc.pro /tmp/BNC/
13COPY newmat /tmp/BNC/newmat/
14COPY qwt /tmp/BNC/qwt/
15COPY qwtpolar /tmp/BNC/qwtpolar/
16COPY src /tmp/BNC/src/
17
18WORKDIR /tmp/BNC
19RUN qmake-qt5 bnc.pro && make
20
21RUN echo '/tmp/BNC/bnc created'
22RUN ./bnc --version
23RUN cat /etc/*release && gcc --version && qmake-qt5 --version
Note: See TracBrowser for help on using the repository browser.