Docker image fixes

This commit is contained in:
Michael Snoyman 2015-02-17 15:41:26 +02:00
parent 613fc07e8e
commit 4761d55ce4
2 changed files with 7 additions and 1 deletions

View File

@ -1011,6 +1011,10 @@ expected-test-failures:
# https://github.com/haskell-distributed/distributed-process-execution/issues/2
- distributed-process-execution
# Seems to depend on mtl being installed in user package database, which
# isn't always the case (e.g., build server)
- mtl
# https://github.com/jberryman/directory-tree/issues/4
- directory-tree

View File

@ -37,6 +37,7 @@ apt-get install -y \
llvm \
libbz2-dev \
libjudy-dev \
libsqlite3-dev \
libmysqlclient-dev \
libpq-dev \
libicu-dev \
@ -51,6 +52,7 @@ apt-get install -y \
libyaml-dev \
liblzma-dev \
libsdl2-dev \
libxss-dev \
libzmq3-dev
mkdir /tmp/nettle-build
@ -59,7 +61,7 @@ cd /tmp/nettle-build
wget https://ftp.gnu.org/gnu/nettle/nettle-2.7.1.tar.gz
tar zxf nettle-2.7.1.tar.gz
cd nettle-2.7.1
./configure
./configure --prefix=/usr
make
make install
)