Changeset - d9df7857761b
[Not reviewed]
default
0 0 1
Hasan Yavuz Ă–ZDERYA - 8 years ago 2017-05-01 13:10:42
hy@ozderya.net
added a dockerfile to build serialplot appimage
1 file changed with 15 insertions and 0 deletions:
0 comments (0 inline, 0 general)
Dockerfile
Show inline comments
 
new file 100644
 
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
0 comments (0 inline, 0 general)