Version 0.0.1 of /fuel-bild
[genesis.git] / fuel-build / docker / ubuntu-builder / install.sh
1 #!/bin/bash
2 ##############################################################################
3 # Copyright (c) 2015 Ericsson AB and others.
4 # stefan.k.berg@ericsson.com
5 # jonas.bjurel@ericsson.com
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Apache License, Version 2.0
8 # which accompanies this distribution, and is available at
9 # http://www.apache.org/licenses/LICENSE-2.0
10 ##############################################################################
11
12 BASE_PACKAGES="make python-setuptools python-all dpkg-dev debhelper
13 fuseiso git genisoimage bind9-host wget curl lintian tmux lxc iptables
14 ca-certificates"
15
16 apt-get update || exit 1
17 apt-get upgrade -y || exit 1
18
19 apt-get install -y $BASE_PACKAGES || exit 1
20
21 echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo
22 chmod 0440 /etc/sudoers.d/open-sudo