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

Install ca-certificates package 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.
This commit is contained in:
Hongli Lai (Phusion) 2014-05-12 23:07:17 +02:00
parent b56693beb3
commit 22c3d60d94
No known key found for this signature in database
GPG Key ID: 2AF96EB85EF4DA0D
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
## 0.9.11
* 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.
## 0.9.10 (release date: 2014-05-12)
* Upgraded to Ubuntu 14.04 (Trusty). We will no longer release images based on 12.04.

View File

@ -31,7 +31,7 @@ dpkg-divert --local --rename --add /usr/bin/ischroot
ln -sf /bin/true /usr/bin/ischroot
## Install HTTPS support for APT.
$minimal_apt_get_install apt-transport-https
$minimal_apt_get_install apt-transport-https ca-certificates
## Upgrade all packages.
apt-get dist-upgrade -y --no-install-recommends