From 0bdd4422af3dc7d4fdf51354fc04d45d801435f4 Mon Sep 17 00:00:00 2001 From: M0VUB <76499782+ShaYmez@users.noreply.github.com> Date: Thu, 23 May 2024 22:49:14 +0100 Subject: [PATCH] Update Dockerfile Try fixing rust compiler --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 16d3adc..5ca3ece 100644 --- a/Dockerfile +++ b/Dockerfile @@ -23,14 +23,15 @@ COPY entrypoint /entrypoint RUN adduser -D -u 54000 radio && \ apk update && \ - apk add git gcc musl-dev && \ + apk add git gcc musl-dev curl && \ + curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh 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 && \ + apk del git gcc musl-dev curl && \ chown -R radio: /hbmon USER radio