Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
install libcurl3-nss to work around Mesos packaging issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Tim Harper committed Sep 19, 2018
1 parent 59b3f1f commit 6d19a8e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/package/debian8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ RUN apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv E56151BF && \
# this MUST be done first, unfortunately, because Mesos packages will create folders that should be symlinks and break the python install process
apt-get install python2.7-minimal -y && \
apt-get install -y openjdk-8-jdk-headless openjdk-8-jre-headless ca-certificates-java=20161107~bpo8+1 && \
# work around required due to https://github.com/mesosphere/mesos-deb-packaging/issues/102
apt-get install -y libcurl3-nss && \
apt-get install --no-install-recommends -y --force-yes mesos=$(cat /mesos-version) && \

# disable mesos-master; we don't want to start in this image
Expand Down
4 changes: 4 additions & 0 deletions tests/package/ubuntu1404/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ RUN apt-key adv --keyserver keyserver.ubuntu.com --recv E56151BF && \
# install mesos
# this MUST be done first, unfortunately, because Mesos packages will create folders that should be symlinks and break the python install process
apt-get install python2.7-minimal -y && \

# work around required due to https://github.com/mesosphere/mesos-deb-packaging/issues/102
apt-get install -y libcurl3-nss && \

apt-get install --no-install-recommends -y --force-yes mesos=$(cat /mesos-version) && \

# disable mesos-master; we don't want to start in this image
Expand Down
2 changes: 2 additions & 0 deletions tests/package/ubuntu1604/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ RUN apt-get update && apt-get install -my wget gnupg lsb-release && \
# this MUST be done first, unfortunately, because Mesos packages will create folders that should be symlinks and break the python install process
apt-get install python2.7-minimal -y && \
apt-get install -y openjdk-8-jdk-headless openjdk-8-jre-headless && \
# work around required due to https://github.com/mesosphere/mesos-deb-packaging/issues/102
apt-get install -y libcurl3-nss && \
apt-get install --no-install-recommends -y --force-yes mesos=$(cat /mesos-version) && \

# disable mesos-master; we don't want to start in this image
Expand Down

0 comments on commit 6d19a8e

Please sign in to comment.