From 68194d7e070aeedb28aa0d2c90b3a2c49b9f0242 Mon Sep 17 00:00:00 2001 From: Prashant Shahi Date: Tue, 2 Aug 2022 10:05:16 +0530 Subject: [PATCH] =?UTF-8?q?fix(query-service):=20=F0=9F=9A=80=20embed=20co?= =?UTF-8?q?py=20of=20timezone=20data=20(#1462)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Prashant Shahi --- pkg/query-service/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/query-service/Dockerfile b/pkg/query-service/Dockerfile index 3689b2bf23..eec478aaef 100644 --- a/pkg/query-service/Dockerfile +++ b/pkg/query-service/Dockerfile @@ -20,7 +20,7 @@ RUN go mod download -x # Add the sources and proceed with build ADD . . -RUN go build -a -ldflags "-linkmode external -extldflags '-static' -s -w $LD_FLAGS" -o ./bin/query-service ./main.go +RUN go build -tags timetzdata -a -ldflags "-linkmode external -extldflags '-static' -s -w $LD_FLAGS" -o ./bin/query-service ./main.go RUN chmod +x ./bin/query-service