-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing docker build for bgold (libsodium)
- Loading branch information
1 parent
4f9c65f
commit e9d66d5
Showing
2 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
FROM ubuntu:xenial | ||
FROM ubuntu:zesty | ||
MAINTAINER slush@satoshilabs.com | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
||
RUN apt-get update && \ | ||
apt-get -qy install curl g++-aarch64-linux-gnu g++-4.8-aarch64-linux-gnu gcc-4.8-aarch64-linux-gnu binutils-aarch64-linux-gnu \ | ||
g++-4.8-multilib \ | ||
gcc-4.8-multilib binutils-gold git-core pkg-config autoconf libtool automake faketime bsdmainutils ca-certificates python locales | ||
apt-get -qy install curl g++-aarch64-linux-gnu g++-5-aarch64-linux-gnu gcc-5-aarch64-linux-gnu binutils-aarch64-linux-gnu \ | ||
g++-5-multilib \ | ||
gcc-5-multilib binutils-gold git-core pkg-config autoconf libtool automake faketime bsdmainutils ca-certificates python locales | ||
|
||
RUN apt-get -qy install build-essential libtool autotools-dev automake pkg-config libssl-dev libevent-dev bsdmainutils libsodium-dev | ||
|
||
ADD run_inside.sh /run.sh | ||
RUN chmod +x /run.sh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters