signoz/cmd/enterprise/Dockerfile

20 lines
368 B
Docker
Raw Normal View History

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
2025-07-17 16:08:31 +05:30
ENTRYPOINT ["./signoz", "server"]