grim/wasdead

Fix some typos
draft
2019-04-19, Gary Kramlich
ebbb484ee8f0
Fix some typos
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"]