From 1e2d87ca850493cbd401cd6a55e3288fd3bcd1e5 Mon Sep 17 00:00:00 2001 From: I-AM-ENGINEER <61810711+I-AM-ENGINEER@users.noreply.github.com> Date: Tue, 20 Aug 2024 21:01:46 +0300 Subject: [PATCH] Missing libpython3.9 dependency --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d349ea8..1ab6d0f 100644 --- a/README.md +++ b/README.md @@ -72,7 +72,7 @@ services: mkdir -p /config && chown ${UID:-1000}:${GID:-1000} /config && apt-get update && - apt-get install -y wget gpg sudo && + apt-get install -y wget gpg sudo libpython3.9 && wget -qO /tmp/hyperion.pub.key https://apt.hyperion-project.org/hyperion.pub.key && gpg --dearmor -o - /tmp/hyperion.pub.key > /usr/share/keyrings/hyperion.pub.gpg && echo \"deb [signed-by=/usr/share/keyrings/hyperion.pub.gpg] https://apt.hyperion-project.org/ bullseye main\" > /etc/apt/sources.list.d/hyperion.list &&