From a9011b20992a363c97b2086801bee34070be8ff3 Mon Sep 17 00:00:00 2001 From: Luke Whrit Date: Fri, 12 Mar 2021 16:13:32 -0500 Subject: [PATCH] build(docker): use correct main.go path in docker file --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9c7898a3..6ecf57eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,7 @@ RUN apk add --no-cache build-base RUN go mod download # Build the binary -RUN go build --ldflags "-s -w" -o bin/spirit -tags sqlite ./ +RUN go build --ldflags "-s -w" -o bin/spirit -tags sqlite ./cmd/spirit/main.go # Run the generated binary CMD ["/opt/spirit/bin/spirit"]