From 50c1af2da865eca6270161a7656a0ca6681dfd61 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C4=81vis?= Date: Thu, 13 Mar 2025 13:04:20 +0000 Subject: [PATCH] fix: include frontend with oss query-service Co-authored-by: Vibhu Pandey --- pkg/query-service/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkg/query-service/Dockerfile b/pkg/query-service/Dockerfile index a870ecceef..0d75b78b94 100644 --- a/pkg/query-service/Dockerfile +++ b/pkg/query-service/Dockerfile @@ -23,6 +23,9 @@ COPY pkg/query-service/templates /root/templates # Make query-service executable for non-root users RUN chmod 755 /root /root/query-service +# Copy frontend +COPY frontend/build/ /etc/signoz/web/ + # run the binary ENTRYPOINT ["./query-service"]