Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
baseimage-docker/image/prepare.sh
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
executable file
57 lines (48 sloc)
1.83 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e | |
source /bd_build/buildconfig | |
set -x | |
## Prevent initramfs updates from trying to run grub and lilo. | |
## https://journal.paul.querna.org/articles/2013/10/15/docker-ubuntu-on-rackspace/ | |
## http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=594189 | |
export INITRD=no | |
mkdir -p /etc/container_environment | |
echo -n no > /etc/container_environment/INITRD | |
## Enable Ubuntu Universe, Multiverse, and deb-src for main. | |
sed -i 's/^#\s*\(deb.*main restricted\)$/\1/g' /etc/apt/sources.list | |
sed -i 's/^#\s*\(deb.*universe\)$/\1/g' /etc/apt/sources.list | |
sed -i 's/^#\s*\(deb.*multiverse\)$/\1/g' /etc/apt/sources.list | |
apt-get update | |
## Fix some issues with APT packages. | |
## See https://github.com/dotcloud/docker/issues/1024 | |
dpkg-divert --local --rename --add /sbin/initctl | |
ln -sf /bin/true /sbin/initctl | |
## Replace the 'ischroot' tool to make it always return true. | |
## Prevent initscripts updates from breaking /dev/shm. | |
## https://journal.paul.querna.org/articles/2013/10/15/docker-ubuntu-on-rackspace/ | |
## https://bugs.launchpad.net/launchpad/+bug/974584 | |
dpkg-divert --local --rename --add /usr/bin/ischroot | |
ln -sf /bin/true /usr/bin/ischroot | |
# apt-utils fix for Ubuntu 16.04 | |
$minimal_apt_get_install apt-utils | |
## Install HTTPS support for APT. | |
$minimal_apt_get_install apt-transport-https ca-certificates | |
## Install add-apt-repository | |
$minimal_apt_get_install software-properties-common | |
## Upgrade all packages. | |
apt-get dist-upgrade -y --no-install-recommends -o Dpkg::Options::="--force-confold" | |
## Fix locale. | |
case $(lsb_release -is) in | |
Ubuntu) | |
$minimal_apt_get_install language-pack-en | |
;; | |
Debian) | |
$minimal_apt_get_install locales locales-all | |
;; | |
*) | |
;; | |
esac | |
locale-gen en_US | |
update-locale LANG=en_US.UTF-8 LC_CTYPE=en_US.UTF-8 | |
echo -n en_US.UTF-8 > /etc/container_environment/LANG | |
echo -n en_US.UTF-8 > /etc/container_environment/LC_CTYPE |