FROM golang:alpine RUN mkdir /usr/src/app WORKDIR /usr/src/app COPY . . RUN go build ENTRYPOINT ["./queues-go"]