FROM golang:1.15-alpine as build RUN apk add --no-cache git WORKDIR /src COPY publisher.go /src RUN go build publisher.go FROM alpine as runtime COPY --from=build /src/publisher /app/publisher CMD [ "/app/publisher" ]