Files @ 9d8cc029351b
Branch filter:

Location: tempo-plotter/Dockerfile

9d8cc029351b 472 B text/x-dockerfile-config Show Annotation Show as Raw Download as Raw
Hasan Yavuz ÖZDERYA
fix FindQwt script for platforms where qwt qt5 version isn't called 'qwt-qt5'

also added check for Qt version of the found qwt library
FROM ubuntu:trusty

WORKDIR /serialplot
ADD . /serialplot

# Install build dependencies
RUN apt-get update
RUN apt-get -y install software-properties-common
RUN add-apt-repository -y ppa:beineri/opt-qt562-trusty
RUN add-apt-repository -y ppa:george-edison55/cmake-3.x
RUN apt-get update
RUN apt-get -y install build-essential mesa-common-dev qt56base qt56serialport cmake mercurial subversion git wget libfuse2

# Define environment variable
ENV PATH /opt/qt56/bin/:$PATH