Files
signoz/Dockerfile
yoshino-s ea9fdddd18
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Failing after 2m23s
init
2025-05-09 13:28:52 +08:00

14 lines
227 B
Docker

FROM docker.io/signoz/signoz:latest AS base
FROM python:3.13.3-alpine AS replacer
COPY --from=base /root/signoz /signoz
COPY replace.py /
RUN python /replace.py /signoz
FROM base
COPY --from=replacer /signoz /root/signoz