Install curl in Docker image

This commit is contained in:
Michael Fahmy 2024-11-27 05:33:09 +02:00 committed by Alan Guo Xiang Tan
parent 46e88afd23
commit bca2229dcc
1 changed files with 2 additions and 0 deletions

View File

@ -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