From d3177ebab7499b819de28fd7b6cd71bb74bccac3 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Wed, 24 Jan 2024 19:06:06 +0000 Subject: [PATCH] Add minio python module, harmonise dockerfiles --- Dockerfile | 1 + Dockerfile.aarch64 | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index d505bf9..5886560 100644 --- a/Dockerfile +++ b/Dockerfile @@ -53,6 +53,7 @@ RUN \ wheel && \ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \ apprise \ + minio \ mysqlclient && \ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ -r requirements.txt && \ cd /app/healthchecks && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 3419dc1..8261cdd 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -13,7 +13,7 @@ ENV PYTHONUNBUFFERED=1 RUN \ echo "**** install build packages ****" && \ - apk add --no-cache --upgrade --virtual=build-dependencies \ + apk add --no-cache --virtual=build-dependencies \ build-base \ cargo \ curl-dev \ @@ -25,7 +25,7 @@ RUN \ python3-dev \ zlib-dev && \ echo "**** install runtime packages ****" && \ - apk add --no-cache --upgrade \ + apk add --no-cache \ grep \ mariadb-client \ postgresql-client \ @@ -53,6 +53,7 @@ RUN \ wheel && \ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ \ apprise \ + minio \ mysqlclient && \ pip install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine-3.19/ -r requirements.txt && \ cd /app/healthchecks && \