1
0
mirror of /repos/baseimage-docker.git synced 2025-12-30 08:01:31 +01:00

Install add-apt-repository.

Closes GH-74.
This commit is contained in:
Hongli Lai (Phusion) 2014-06-17 12:44:43 +02:00
parent 436be20ff0
commit 92c2ea22ed
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
## 0.9.11 (not yet released) ## 0.9.11 (not yet released)
* The `ca-certificates` package is now installed by default. This is because we include `apt-transport-https`, but Ubuntu 14.04 no longer installs `ca-certificates` by default anymore. Closes GH-73. * The `ca-certificates` package is now installed by default. This is because we include `apt-transport-https`, but Ubuntu 14.04 no longer installs `ca-certificates` by default anymore. Closes GH-73.
* `add-apt-repository` is now installed by default. Closes GH-74.
## 0.9.10 (release date: 2014-05-12) ## 0.9.10 (release date: 2014-05-12)

View File

@ -33,6 +33,9 @@ ln -sf /bin/true /usr/bin/ischroot
## Install HTTPS support for APT. ## Install HTTPS support for APT.
$minimal_apt_get_install apt-transport-https ca-certificates $minimal_apt_get_install apt-transport-https ca-certificates
## Install add-apt-repository
$minimal_apt_get_install software-properties-common
## Upgrade all packages. ## Upgrade all packages.
apt-get dist-upgrade -y --no-install-recommends apt-get dist-upgrade -y --no-install-recommends