pprofweb/Dockerfile

17 lines
455 B
Docker
Raw Normal View History

2020-01-11 20:18:50 +00:00
# Extract graphviz and dependencies
2025-02-27 05:45:58 +00:00
FROM golang:1.24-bookworm AS builder
2022-09-27 00:15:49 +00:00
COPY . /go/src/pprofweb/
WORKDIR /go/src/pprofweb
2024-09-09 20:08:56 +00:00
RUN go build -o server ./pkg/webserver
2020-01-11 20:18:50 +00:00
2024-09-09 20:15:09 +00:00
FROM debian:12 AS run
RUN apt-get update && apt-get install -y graphviz libgvc6 libcgraph6 libltdl7 libxdot4 libcdt5 libpathplan4 libexpat1 zlib1g
2022-09-27 00:15:49 +00:00
COPY --from=builder /go/src/pprofweb/server /pprofweb
2020-01-11 20:18:50 +00:00
# Configure dot plugins
RUN ["dot", "-c"]
WORKDIR /
2022-09-27 00:15:49 +00:00
EXPOSE 7443
2020-01-11 20:18:50 +00:00
ENTRYPOINT ["/pprofweb"]