From 88d557f12f1462784020a985faa37e0041da3e4b Mon Sep 17 00:00:00 2001 From: Rathorian Date: Wed, 27 Sep 2023 17:38:01 +0200 Subject: [PATCH] update(): unrar 6.2.11 * Removed p7zip which no longer exists in the Alpine Linux repositories. * Added 7zip --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2ff4c9d..e6ee58b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:3.18 AS builder -ARG UNRAR_VER=6.2.10 +ARG UNRAR_VER=6.2.11 RUN apk --update --no-cache add \ autoconf \ @@ -47,6 +47,7 @@ ENV UID=991 \ COPY --from=builder /usr/bin/unrar /usr/bin RUN apk --update --no-cache add \ + 7zip \ bash \ curl \ curl-dev \ @@ -62,7 +63,6 @@ RUN apk --update --no-cache add \ mktorrent \ nginx \ openssl \ - p7zip \ php81 \ php81-bcmath \ php81-ctype \