source: ntrip/trunk/BNC/Dockerfile@ 9121

Last change on this file since 9121 was 9121, checked in by wiese, 4 years ago

dockerfile: add label

File size: 711 bytes
Line 
1# ##############################################
2# Dockerfile for building BNC on debian with Qt5
3# ##############################################
4# Usage: docker/podman build -t bnc:2.13 .
5FROM debian:buster-slim
6
7LABEL maintainer="igs-ip@bkg.bund.de"
8
9RUN apt-get update && apt-get install -y build-essential libssl-dev
10RUN apt-get install -y qtbase5-dev libqt5svg5-dev
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
18# Build
19WORKDIR /tmp/BNC
20RUN qmake -qt=5 bnc.pro && make
21
22# Print version
23RUN echo '/tmp/BNC/bnc created'
24RUN ./bnc --version
25#RUN cat /etc/*release && gcc --version && qmake -qt=5 --version
Note: See TracBrowser for help on using the repository browser.