source: ntrip/trunk/BNC/docker/Dockerfile.bullseye@ 9764

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

ADD: dockerfiles

File size: 664 bytes
Line 
1# Usage: cd .. && docker/podman build -t bullseye/bnc:v2.13.0 -f docker/Dockerfile.bullseye .
2
3FROM debian:bullseye-slim
4
5RUN apt update && apt upgrade -y
6RUN apt install -y build-essential libssl-dev
7RUN apt install -y \
8 qtbase5-dev \
9 libqt5concurrent5 \
10 libqt5network5 \
11 libqt5printsupport5 \
12 libqt5svg5-dev \
13 libqt5opengl5
14
15COPY bnc_plugin.pro bnc.pro /tmp/BNC/
16COPY newmat /tmp/BNC/newmat/
17COPY qwt /tmp/BNC/qwt/
18COPY qwtpolar /tmp/BNC/qwtpolar/
19COPY src /tmp/BNC/src/
20
21WORKDIR /tmp/BNC
22RUN qmake -qt=5 bnc.pro && make
23
24RUN echo '/tmp/BNC/bnc created'
25RUN ./bnc --version
26RUN cat /etc/*release && gcc --version && qmake -qt=5 --version
Note: See TracBrowser for help on using the repository browser.