From 9dc7a95c8a0011298ce7b8899b342ab22de0268d Mon Sep 17 00:00:00 2001 From: Darren Rambaud Date: Mon, 21 Dec 2020 07:32:44 -0600 Subject: [PATCH] Fix Dockerfile (#84) - Remove use of wildcard/astericks characters when copying go binary from the build stage --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f1840ff..fad1f2a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,6 +12,6 @@ RUN go install ./... FROM alpine RUN apk add ca-certificates -COPY --from=build-env /go/bin/* /usr/local/bin/* +COPY --from=build-env /go/bin/ /usr/local/bin/ WORKDIR /workspace ENTRYPOINT ["/usr/local/bin/graphik"] \ No newline at end of file