-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #391 from HorizenOfficial/cr/prepare_release_2.0.24
- Loading branch information
Showing
34 changed files
with
312 additions
and
312 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
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,4 +1,4 @@ | ||
Zen 2.0.23 | ||
Zen 2.0.24 | ||
============== | ||
|
||
What is Horizen? | ||
|
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
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
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
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,4 +1,4 @@ | ||
FROM ubuntu:xenial | ||
FROM ubuntu:focal | ||
|
||
MAINTAINER [email protected] | ||
|
||
|
@@ -7,22 +7,24 @@ COPY entrypoint.sh /usr/local/bin/entrypoint.sh | |
SHELL ["/bin/bash", "-c"] | ||
|
||
RUN set -euxo pipefail \ | ||
&& DEBIAN_FRONTEND=noninteractive \ | ||
&& export DEBIAN_FRONTEND=noninteractive \ | ||
&& apt-get update \ | ||
&& apt-get -y --no-install-recommends install apt-utils \ | ||
&& apt-get -y --no-install-recommends dist-upgrade \ | ||
&& apt-get -y --no-install-recommends install aria2 autoconf automake bsdmainutils build-essential \ | ||
ca-certificates cmake curl dirmngr fakeroot git g++-multilib gnupg2 help2man libc6-dev libgomp1 \ | ||
libtool lintian m4 ncurses-dev pigz pkg-config pv python python-dev python-pip python-setuptools \ | ||
python-wheel python-wheel-common python-zmq unzip wget zlib1g-dev \ | ||
&& pip install b2==1.4.2 pyblake2 \ | ||
libtool lintian m4 ncurses-dev pigz pkg-config pv python2-dev python-setuptools time unzip wget zlib1g-dev \ | ||
&& curl -s https://bootstrap.pypa.io/pip/2.7/get-pip.py | python2 \ | ||
&& pip2 install b2==1.4.2 pyblake2 pyzmq websocket-client2 \ | ||
&& BASEURL="https://github.com/tianon/gosu/releases/download/" \ | ||
&& GOSU_VERSION="1.11" \ | ||
&& GOSU_VERSION="1.13" \ | ||
&& DPKG_ARCH="$(dpkg --print-architecture | awk -F- '{ print $NF }')" \ | ||
&& curl -o /usr/local/bin/gosu -SL "${BASEURL}/${GOSU_VERSION}/gosu-${DPKG_ARCH}" \ | ||
&& curl -o /usr/local/bin/gosu.asc -SL "${BASEURL}/${GOSU_VERSION}/gosu-${DPKG_ARCH}.asc" \ | ||
&& export GNUPGHOME="$(mktemp -d)" \ | ||
&& ( gpg2 --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 || \ | ||
&& ( gpg2 --batch --keyserver hkps://keys.openpgp.org --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 || \ | ||
gpg2 --batch --keyserver hkps://keyserver.ubuntu.com:443 --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 || \ | ||
gpg2 --batch --keyserver hkp://p80.pool.sks-keyservers.net:80 --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 || \ | ||
gpg2 --batch --keyserver hkp://ha.pool.sks-keyservers.net --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 || \ | ||
gpg2 --batch --keyserver pgp.mit.edu --recv-key B42F6819007F00F88E364FD4036A9C25BF357DD4 || \ | ||
gpg2 --batch --keyserver keyserver.pgp.com --recv-keys B42F6819007F00F88E364FD4036A9C25BF357DD4 || \ | ||
|
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
Oops, something went wrong.