From e385efb32234685b73decea18da59fcc960399f0 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Wed, 10 Nov 2021 12:25:25 -0600 Subject: [PATCH] upgrade pip --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 22dfdef..c865eef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /opt/healthchecks RUN useradd --system hc && \ git clone --depth 1 --branch v${VERSION} https://github.com/healthchecks/healthchecks.git /opt/healthchecks && \ - pip install --no-cache-dir pip && \ + pip install --no-cache-dir --upgrade pip && \ pip install --no-cache-dir -r /opt/healthchecks/requirements.txt && \ pip install --no-cache-dir uwsgi && \ rm -f /opt/healthchecks/hc/local_settings.py && \