Skip to content
This repository has been archived by the owner on Apr 26, 2019. It is now read-only.

Force install nss to get libnss3.so onto alpine images to fix broken openjdk8 packages #99

Merged
merged 1 commit into from
Mar 29, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ agents = [
],
before_install: [
'apk --no-cache upgrade',
'apk add --no-cache openjdk8-jre-base git mercurial subversion openssh-client bash curl'
'apk add --no-cache nss openjdk8-jre-base git mercurial subversion openssh-client bash curl'
]
},
{
Expand All @@ -128,7 +128,7 @@ agents = [
],
before_install: [
'apk --no-cache upgrade',
'apk add --no-cache openjdk8-jre-base git mercurial subversion openssh-client bash curl'
'apk add --no-cache nss openjdk8-jre-base git mercurial subversion openssh-client bash curl'
]
},
{
Expand All @@ -143,7 +143,7 @@ agents = [
],
before_install: [
'apk --no-cache upgrade',
'apk add --no-cache openjdk8-jre-base git mercurial subversion openssh-client bash curl'
'apk add --no-cache nss openjdk8-jre-base git mercurial subversion openssh-client bash curl'
]
},
{
Expand All @@ -158,7 +158,7 @@ agents = [
],
before_install: [
'apk --no-cache upgrade',
'apk add --no-cache openjdk8-jre-base git mercurial subversion openssh-client bash curl'
'apk add --no-cache nss openjdk8-jre-base git mercurial subversion openssh-client bash curl'
]
},
{
Expand All @@ -176,7 +176,7 @@ agents = [
],
before_install: [
'apk --no-cache upgrade',
'apk add --no-cache openjdk8-jre-base git mercurial subversion openssh-client bash curl'
'apk add --no-cache nss openjdk8-jre-base git mercurial subversion openssh-client bash curl'
],
setup_commands: [
'sh -c "$(which dind) dockerd --host=unix:///var/run/docker.sock --host=tcp://0.0.0.0:2375" > /usr/local/bin/nohup.out 2>&1 &'
Expand Down