grim/wasdead

Overhaul the commands, again
draft
2019-04-08, Gary Kramlich
14a3ef1fae60
Overhaul the commands, 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"]