feat(server): add iana-etc and cacert to the shell convenience package

These probably should be part of every container image by default, but
adding it to the "shell" convenience name probably is our best bet for
now.
This commit is contained in:
Florian Klink 2019-08-16 21:18:43 +02:00 committed by Vincent Ambo
parent e7250d30e5
commit 432963e1d6

View File

@ -88,7 +88,7 @@ type BuildResult struct {
//
// * `shell`: Includes bash, coreutils and other common command-line tools
func convenienceNames(packages []string) []string {
shellPackages := []string{"bashInteractive", "coreutils", "moreutils", "nano"}
shellPackages := []string{"bashInteractive", "cacert", "coreutils", "iana-etc", "moreutils", "nano"}
if packages[0] == "shell" {
return append(packages[1:], shellPackages...)