Some checks failed
Create and publish a Docker image / build-and-push-image (push) Failing after 2m23s
14 lines
227 B
Docker
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
|