From c1a44314886070ee69ab2d5a20a979f951df0578 Mon Sep 17 00:00:00 2001 From: M0VUB <76499782+ShaYmez@users.noreply.github.com> Date: Thu, 23 May 2024 23:01:52 +0100 Subject: [PATCH] Update Dockerfile Unable to build compiler for rust - Will work on this at a later date --- Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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