pidgin/carrier

a78bd0a5531e
A bunch more work, potentially working, but need to deploy to test
FROM golang:stretch AS build
WORKDIR /app
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o carrier -a -ldflags '-extldflags "-static" -s' .
FROM scratch
CMD ["/carrier"]
COPY --from=build /app/carrier /carrier