mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 16:07:10 +00:00
Deprecate all flags - Use querier.config.fluxInterval in lieu of passing `--flux-interval` and `--flux-interval-for-trace-detail` - Remove `--gateway-url` - Use telemetrystore.clickhouse.cluster in lieu of passing `--cluster` or `--cluster-name` - Add an `unparam` check in the linter. Updated some functions across the querier codebase to be compatible with this linter. - Remove prometheus config from docker builds.
19 lines
357 B
Docker
19 lines
357 B
Docker
FROM alpine:3.20.3
|
|
LABEL maintainer="signoz"
|
|
WORKDIR /root
|
|
|
|
ARG OS="linux"
|
|
ARG TARGETARCH
|
|
|
|
RUN apk update && \
|
|
apk add ca-certificates && \
|
|
rm -rf /var/cache/apk/*
|
|
|
|
|
|
COPY ./target/${OS}-${TARGETARCH}/signoz /root/signoz
|
|
COPY ./templates/email /root/templates
|
|
COPY frontend/build/ /etc/signoz/web/
|
|
|
|
RUN chmod 755 /root /root/signoz
|
|
|
|
ENTRYPOINT ["./signoz"] |