noot
commit-tag / commit-tag-image (push) Failing after 5m42s Details

This commit is contained in:
a 2024-09-09 15:15:09 -05:00
parent a05f054ea1
commit c22bdf9c97
Signed by: a
GPG Key ID: 374BC539FE795AF0
1 changed files with 3 additions and 2 deletions

View File

@ -11,9 +11,10 @@ COPY . /go/src/pprofweb/
WORKDIR /go/src/pprofweb
RUN go build -o server ./pkg/webserver
FROM gcr.io/distroless/base-debian11:latest AS run
FROM debian:12 AS run
RUN apt-get update && apt-get install -y graphviz libgvc6 libcgraph6 libltdl7 libxdot4 libcdt5 libpathplan4 libexpat1 zlib1g
COPY --from=builder /go/src/pprofweb/server /pprofweb
COPY --from=deb_extractor /dpkg /
# Configure dot plugins
RUN ["dot", "-c"]