diff --git a/Dockerfile b/Dockerfile index 45aeb48..16d3adc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,15 +23,14 @@ COPY entrypoint /entrypoint RUN adduser -D -u 54000 radio && \ apk update && \ - apk add git gcc musl-dev curl && \ - curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf -y | sh && \ + apk add git gcc musl-dev && \ pip install --upgrade pip && \ pip cache purge && \ cd /opt && \ git clone https://github.com/shaymez/HBMonv2.git /hbmon && \ cd /hbmon && \ pip install --no-cache-dir -r requirements.txt && \ - apk del git gcc musl-dev curl && \ + apk del git gcc musl-dev && \ chown -R radio: /hbmon USER radio