Skip to content

Commit

Permalink
Merge pull request #95
Browse files Browse the repository at this point in the history
Release v0.3.0
  • Loading branch information
bsrinivas8687 authored Mar 31, 2022
2 parents e372b33 + b87b457 commit a4649ea
Show file tree
Hide file tree
Showing 6 changed files with 506 additions and 163 deletions.
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:alpine3.13 AS build
FROM golang:alpine3.15 AS build

COPY . /go/src/github.com/sentinel-official/dvpn-node/

Expand All @@ -8,11 +8,11 @@ RUN apk add git gcc linux-headers make musl-dev && \

RUN cd /root/ && \
apk add autoconf automake file g++ git libtool make unbound-dev && \
git clone https://github.com/handshake-org/hnsd.git --branch=v1.0.0 --depth=1 && \
git clone https://github.com/handshake-org/hnsd.git --branch=master --depth=1 && \
cd /root/hnsd/ && \
bash autogen.sh && sh configure && make --jobs=$(nproc)

FROM alpine:3.13
FROM alpine:3.15

COPY --from=build /go/bin/sentinelnode /usr/local/bin/process
COPY --from=build /root/hnsd/hnsd /usr/local/bin/hnsd
Expand Down
29 changes: 13 additions & 16 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,29 +4,26 @@ go 1.16

require (
github.com/avast/retry-go v3.0.0+incompatible
github.com/cosmos/cosmos-sdk v0.42.5
github.com/cosmos/cosmos-sdk v0.44.6
github.com/cosmos/go-bip39 v1.0.0
github.com/go-kit/kit v0.11.0
github.com/go-kit/kit v0.12.0
github.com/gorilla/mux v1.8.0
github.com/pkg/errors v0.9.1
github.com/rs/cors v1.8.0
github.com/rs/zerolog v1.23.0
github.com/sentinel-official/hub v0.7.0
github.com/showwin/speedtest-go v1.1.2
github.com/rs/cors v1.8.2
github.com/rs/zerolog v1.26.1
github.com/sentinel-official/hub v0.9.0
github.com/showwin/speedtest-go v1.1.5
github.com/soheilhy/cmux v0.1.5
github.com/spf13/cobra v1.2.1
github.com/spf13/viper v1.8.1
github.com/tendermint/tendermint v0.34.11
golang.org/x/crypto v0.0.0-20210711020723-a769d52b0f97
google.golang.org/grpc v1.39.0
gorm.io/driver/sqlite v1.1.4
gorm.io/gorm v1.21.12
github.com/spf13/cobra v1.4.0
github.com/spf13/viper v1.10.1
github.com/tendermint/tendermint v0.34.14
golang.org/x/crypto v0.0.0-20211215165025-cf75a172585e
google.golang.org/grpc v1.43.0
gorm.io/driver/sqlite v1.3.1
gorm.io/gorm v1.23.3
)

replace (
github.com/99designs/keyring => github.com/99designs/keyring v1.1.7-0.20210324095724-d9b6b92e219f
github.com/cosmos/cosmos-sdk => github.com/sentinel-official/cosmos-sdk v0.42.6-sentinel
github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1
github.com/showwin/speedtest-go => github.com/bsrinivas8687/speedtest-go v1.1.3-0.20210629110436-a23d0944a09d
google.golang.org/grpc => google.golang.org/grpc v1.33.2
)
Loading

0 comments on commit a4649ea

Please sign in to comment.