diff options
Diffstat (limited to 'fuel-build/docker/ubuntu-builder/install.sh')
-rwxr-xr-x | fuel-build/docker/ubuntu-builder/install.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/fuel-build/docker/ubuntu-builder/install.sh b/fuel-build/docker/ubuntu-builder/install.sh new file mode 100755 index 0000000..667ab27 --- /dev/null +++ b/fuel-build/docker/ubuntu-builder/install.sh @@ -0,0 +1,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 |