From da12fc380d831add336a490fbc1e7dd5586bf78f Mon Sep 17 00:00:00 2001 From: Michael Fahmy Date: Wed, 27 Nov 2024 05:33:09 +0200 Subject: [PATCH] Install curl in Docker image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 33a1a9d..21d3920 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,8 @@ ARG GEM_VERSION= FROM ruby:${RUBY_VERSION}-slim +RUN apt update && apt install -y curl + RUN gem install --no-doc --version=${GEM_VERSION} prometheus_exporter EXPOSE 9394