source: ntrip/trunk/BNC/Dockerfile@ 9297

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

dockerfile: add label

File size: 732 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"
8LABEL version="2.13"
9
10RUN apt-get update && apt-get install -y build-essential libssl-dev
11RUN apt-get install -y qtbase5-dev libqt5svg5-dev
12
13COPY bnc_plugin.pro bnc.pro /tmp/BNC/
14COPY newmat /tmp/BNC/newmat/
15COPY qwt /tmp/BNC/qwt/
16COPY qwtpolar /tmp/BNC/qwtpolar/
17COPY src /tmp/BNC/src/
18
19# Build
20WORKDIR /tmp/BNC
21RUN qmake -qt=5 bnc.pro && make
22
23# Print version
24RUN echo '/tmp/BNC/bnc created'
25RUN ./bnc --version
26#RUN cat /etc/*release && gcc --version && qmake -qt=5 --version
Note: See TracBrowser for help on using the repository browser.