From 3a0b5e291769b11575a81a6f2908b40bdf13f020 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Mon, 6 Jun 2022 21:01:33 +0100 Subject: [PATCH] Use apk --- Dockerfile | 9 ++++----- Dockerfile.aarch64 | 9 ++++----- Dockerfile.armhf | 9 ++++----- 3 files changed, 12 insertions(+), 15 deletions(-) diff --git a/Dockerfile b/Dockerfile index f898147..2623ddd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,12 +13,11 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ + apk add -U --upgrade --no-cache \ + curl \ jq \ - libicu66 \ - libmediainfo0v5 \ - sqlite3 && \ + icu-libs \ + sqlite-libs && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 554a0a5..815bc21 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -12,12 +12,11 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ + apk add -U --upgrade --no-cache \ + curl \ jq \ - libicu66 \ - libmediainfo0v5 \ - sqlite3 && \ + icu-libs \ + sqlite-libs && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 8a504d6..ff509ed 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -13,12 +13,11 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ + apk add -U --upgrade --no-cache \ + curl \ jq \ - libicu66 \ - libmediainfo0v5 \ - sqlite3 && \ + icu-libs \ + sqlite-libs && \ echo "**** install radarr ****" && \ mkdir -p /app/radarr/bin && \ if [ -z ${RADARR_RELEASE+x} ]; then \