heimdall/Dockerfile

11 lines
269 B
Docker

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"]