2016-06-03 14:23:22 +01:00
|
|
|
###########################################################################
|
|
|
|
# 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 #
|
|
|
|
###########################################################################
|
|
|
|
|
2020-07-24 22:04:26 +01:00
|
|
|
FROM debian:9
|
2016-06-03 14:23:22 +01:00
|
|
|
|
|
|
|
MAINTAINER Ricardo Martins <rasm@oceanscan-mst.com>
|
2020-07-24 22:04:26 +01:00
|
|
|
MAINTAINER Pedro Gonçalves <pedro@lsts.pt>
|
2016-06-03 14:23:22 +01:00
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
|
|
# Update distro.
|
2017-06-28 13:25:37 +01:00
|
|
|
RUN echo "deb http://ftp.us.debian.org/debian testing non-free contrib" >> /etc/apt/sources.list
|
2020-07-24 22:04:26 +01:00
|
|
|
RUN apt-get update
|
|
|
|
RUN apt-get install -y gnupg2
|
2020-07-31 12:44:27 +01:00
|
|
|
RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 40976EAF437D05B5
|
2020-07-24 22:04:26 +01:00
|
|
|
RUN apt-get install -y apt-utils
|
|
|
|
RUN apt-get install -y gpgv
|
2016-06-03 14:23:22 +01:00
|
|
|
RUN apt-get update -y
|
2020-07-24 22:04:26 +01:00
|
|
|
RUN apt-get install -y apt-utils
|
2016-06-03 14:23:22 +01:00
|
|
|
RUN apt-get dist-upgrade -y
|
2020-07-31 12:44:27 +01:00
|
|
|
RUN apt-get install -y bash-completion
|
2016-06-03 14:23:22 +01:00
|
|
|
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
|
2016-06-14 18:54:37 +01:00
|
|
|
RUN apt-get install -y file
|
2020-07-24 22:04:26 +01:00
|
|
|
RUN apt-get install -y kmod
|
2017-06-28 13:25:37 +01:00
|
|
|
RUN apt-get install -y vim
|
|
|
|
RUN apt-get install -y nasm
|
|
|
|
RUN apt-get install -y build-essential
|
|
|
|
RUN apt-get install -y make
|