Commit 5af6e57 Shaun Gould
authored
File tree 6 files changed +16
-53
lines changed
6 files changed +16
-53
lines changed Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ MAINTAINER cronic@horizen.io
20
20
21
21
SHELL ["/bin/bash" , "-c" ]
22
22
23
- # Latest release zen 3.2.1
24
- ARG ZEN_COMMITTISH=v3.2.1
23
+ # Latest release zen 4.0.0-rc1
24
+ ARG ZEN_COMMITTISH=v4.0.0-rc1
25
25
ARG IS_RELEASE=false
26
26
# cronic <cronic@zensystem.io> https://keys.openpgp.org/vks/v1/by-fingerprint/219F55740BBF7A1CE368BA45FB7053CE4991B669
27
27
# Luigi Varriale <luigi@horizenlabs.io> https://keys.openpgp.org/vks/v1/by-fingerprint/FC3388A460ACFAB04E8328C07BB2A1D2CFDFCD2C
@@ -35,7 +35,7 @@ RUN set -euxo pipefail \
35
35
&& apt-get -y --no-install-recommends install autoconf automake \
36
36
bsdmainutils build-essential ca-certificates cmake curl dirmngr fakeroot \
37
37
git g++-multilib gnupg2 libc6-dev libgomp1 libtool m4 ncurses-dev \
38
- pkg-config zlib1g-dev \
38
+ pkg-config python3 zlib1g-dev \
39
39
&& git clone https://github.com/HorizenOfficial/zen.git \
40
40
&& cd /zen && git checkout "${ZEN_COMMITTISH}" \
41
41
&& if [ "$IS_RELEASE" = "true" ]; then \
Original file line number Diff line number Diff line change 1
1
module github.com/HorizenOfficial/rosetta-zen
2
2
3
- go 1.13
3
+ go 1.16
4
4
5
5
require (
6
6
github.com/btcsuite/btclog v0.0.0-20170628155309-84c8d2346e9f
@@ -12,6 +12,9 @@ require (
12
12
go.uber.org/zap v1.16.0
13
13
golang.org/x/crypto v0.0.0-20200820211705-5c72a883971a
14
14
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
15
+ )
16
+
17
+ require (
15
18
golang.org/x/tools v0.0.0-20200904185747-39188db58858 // indirect
16
19
honnef.co/go/tools v0.0.1-2020.1.5 // indirect
17
20
)
You can’t perform that action at this time.
0 commit comments