summaryrefslogtreecommitdiffstats
path: root/fuel-build/docker/ubuntu-builder/install.sh
blob: 667ab27345de6c7914c3dd43a7ef8e3658e7cdcb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/bin/bash
##############################################################################
# Copyright (c) 2015 Ericsson AB and others.
# stefan.k.berg@ericsson.com
# jonas.bjurel@ericsson.com
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
##############################################################################

BASE_PACKAGES="make python-setuptools python-all dpkg-dev debhelper
fuseiso git genisoimage bind9-host wget curl lintian tmux lxc iptables
ca-certificates"

apt-get update || exit 1
apt-get upgrade -y || exit 1

apt-get install -y $BASE_PACKAGES || exit 1

echo "ALL ALL=NOPASSWD: ALL" > /etc/sudoers.d/open-sudo
chmod 0440 /etc/sudoers.d/open-sudo