grim/wasdead

Major overhaul to the database, please look at issue #13 for more information on why we assume channels[] is always 1
FROM golang:1.12 AS build
COPY . /nowdead
WORKDIR /nowdead
RUN CGO_ENABLED=0 go build -ldflags '-w -extldflags "-static"'
FROM scratch
COPY --from=build /nowdead/nowdead /nowdead
CMD ["/nowdead"]