FROM golang:alpine RUN mkdir /code WORKDIR /code COPY . . RUN go build ENTRYPOINT ["./monitoring"]