grim/wasdead

Move the commands back to kong (again)
draft
2019-05-11, Gary Kramlich
b81ba75f65cb
Move the commands back to kong (again)
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"]