From b1e148e1213c1832efb875bbb42e940026a7ade9 Mon Sep 17 00:00:00 2001 From: Matthias Tafelmeier Date: Sat, 22 Apr 2023 22:20:47 +0200 Subject: [PATCH] correct curl install glitch --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1fa5352..a48a7b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,9 +7,9 @@ COPY . /prometheus-ss-exporter RUN set -ex \ && apt-get update \ - && apt-get install -y git \ + && apt-get install -y git curl \ && apt-get clean \ - && pip install --no-cache-dir -U pip curl \ + && pip install --no-cache-dir -U pip \ && cd /prometheus-ss-exporter \ && python3 setup.py install