diff --git a/Dockerfile b/Dockerfile index 7037359..d5c44d0 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM golang:1.12 as builder WORKDIR /go/src/github.com/fhmq/hmq COPY . . COPY ./vendor . -RUN CGO_ENABLED=0 go build -o thing_model -a -ldflags '-extldflags "-static"' . +RUN CGO_ENABLED=0 go build -o hmq -a -ldflags '-extldflags "-static"' . FROM alpine:3.8