diff --git a/1.3/onbuild/Dockerfile b/1.3/onbuild/Dockerfile index ac1b3650..01f5457a 100644 --- a/1.3/onbuild/Dockerfile +++ b/1.3/onbuild/Dockerfile @@ -4,7 +4,7 @@ RUN mkdir -p /go/src/app WORKDIR /go/src/app # this will ideally be built by the ONBUILD below ;) -CMD ["/go/bin/app"] +CMD ["/go/src/app/app"] ONBUILD COPY . /go/src/app ONBUILD RUN go get -d -v ./...