added server; initial cluster state

Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
This commit is contained in:
Evan Hazlett 2019-10-03 09:49:23 -04:00
parent 6fed0fa858
commit 562f1caa54
No known key found for this signature in database
GPG key ID: A519480096146526
704 changed files with 361956 additions and 534 deletions

10
Dockerfile Normal file
View file

@ -0,0 +1,10 @@
FROM golang:1.12 AS build
ARG BUILD
WORKDIR /go/src/github.com/stellarproject/heimdall
COPY . /go/src/github.com/stellarproject/heimdall
RUN make
FROM alpine:latest
COPY --from=build /go/src/github.com/stellarproject/heimdall/bin/* /bin/
ENTRYPOINT ["/bin/heimdall"]