From aa1996179bc22810b04b1dfadafd4786be6698b6 Mon Sep 17 00:00:00 2001 From: M0VUB <76499782+ShaYmez@users.noreply.github.com> Date: Sat, 5 Aug 2023 22:04:56 +0100 Subject: [PATCH] Update Dockerfile --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 546ffab..53ced7b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,10 +1,12 @@ -FROM python:3.10-alpine +FROM python:alpine3.18 COPY entrypoint-proxy /entrypoint RUN adduser -D -u 54001 hbmon && \ apk update && \ apk add git gcc musl-dev libffi-dev libssl-dev cargo && \ + pip install --upgrade pip && \ + pip cache purge && \ cd /opt && \ git clone https://github.com/ShaYmez/HBMonv2.git && \ cd /opt/HBmonv2 && \