From f3a2c03aaa89d4fcb5b0b9a929b7b5a402d1ead7 Mon Sep 17 00:00:00 2001 From: Guillaume Berche Date: Sat, 19 Oct 2024 22:39:46 +0200 Subject: [PATCH] Add missing bash Required at https://github.com/orange-cloudfoundry/iperf-prometheus-collector/blob/489aa81beca83cbdc691f2cd0e0d3cfcea06607e/cmd/iperf.go#L41 --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index c3339d7..a36f436 100644 --- a/Dockerfile +++ b/Dockerfile @@ -18,6 +18,7 @@ RUN apk add --no-cache iperf3 COPY --from=builder /app/build /app/build RUN apk add --no-cache file +RUN apk add --no-cache bash RUN file /app/build/main CMD ["/app/build/main"]