39 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Docker
		
	
	
	
	
	
| ###########################################################################
 | |
| # GLUED: GNU/Linux Uniform Environment Distribution                       #
 | |
| # Copyright (C) 2016 OceanScan - Marine Systems & Technology, Lda.        #
 | |
| ###########################################################################
 | |
| # This program is free software; you can redistribute it and/or modify    #
 | |
| # it under the terms of the GNU General Public License as published by    #
 | |
| # the Free Software Foundation; either version 2 of the License, or (at   #
 | |
| # your option) any later version.                                         #
 | |
| #                                                                         #
 | |
| # This program is distributed in the hope that it will be useful, but     #
 | |
| # WITHOUT ANY WARRANTY; without even the implied warranty of              #
 | |
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU       #
 | |
| # General Public License for more details.                                #
 | |
| #                                                                         #
 | |
| # You should have received a copy of the GNU General Public License       #
 | |
| # along with this program; if not, write to the Free Software             #
 | |
| # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA           #
 | |
| # 02110-1301 USA.                                                         #
 | |
| ###########################################################################
 | |
| # Author: Ricardo Martins                                                 #
 | |
| ###########################################################################
 | |
| 
 | |
| FROM debian:8
 | |
| 
 | |
| MAINTAINER Ricardo Martins <rasm@oceanscan-mst.com>
 | |
| 
 | |
| ENV DEBIAN_FRONTEND noninteractive
 | |
| 
 | |
| # Update distro.
 | |
| RUN apt-get update -y
 | |
| RUN apt-get dist-upgrade -y
 | |
| RUN apt-get install -y wget
 | |
| RUN apt-get install -y bzip2
 | |
| RUN apt-get install -y git
 | |
| RUN apt-get install -y g++-multilib
 | |
| RUN apt-get install -y cmake
 | |
| RUN apt-get install -y file
 | |
| RUN apt-get install -y kmod
 |