grim/wasdead

Fix the help message for the help command
draft
2019-04-08, Gary Kramlich
c06bc2e462ed
Fix the help message for the help command
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"]