From 4e3bfb67d47fa0c9ca0fb8b575aa6ca0f19f68f2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Sivertsson?= Date: Sat, 4 Jul 2026 14:45:36 +0200 Subject: [PATCH] add curl --- Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 9f14761..af997aa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,10 +2,13 @@ FROM debian:bookworm ARG VERSION=2.2.0 +RUN apt-get update +RUN apt-get install \ + curl + RUN curl -L -o /tmp/hyperion.deb \ https://github.com/hyperion-project/hyperion.ng/releases/download/${VERSION}/Hyperion-${VERSION}-Linux-amd64.deb -RUN apt-get update RUN apt-get install -y /tmp/Hyperion*.deb RUN rm /tmp/Hyperion*.deb RUN rm -rf /var/lib/apt/lists/*