From 6a66bd353a79a1d6e402f60cb38b3ff548c96e28 Mon Sep 17 00:00:00 2001 From: Egor Kovetskiy Date: Tue, 7 Jan 2020 16:06:32 +0300 Subject: [PATCH] fix passing bin from previous image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9953445..96dce66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,7 @@ RUN make build FROM alpine:latest RUN apk --no-cache add ca-certificates bash -COPY --from=0 /go/src/mark/mark /bin/ +COPY --from=0 /go/src/github.com/kovetskiy/mark/mark /bin/ RUN mkdir -p /docs WORKDIR /docs ENTRYPOINT ["/bin/mark"]