From 065c10c5bc3aef6a6b9a27dddaa200bb787bb6ad Mon Sep 17 00:00:00 2001 From: Linus Dietz <45101649+Dielee@users.noreply.github.com> Date: Fri, 30 Aug 2024 12:02:55 +0200 Subject: [PATCH] Add alpine comunity packages --- src/Dockerfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/Dockerfile b/src/Dockerfile index ebac5bd..72653e5 100644 --- a/src/Dockerfile +++ b/src/Dockerfile @@ -1,6 +1,9 @@ ARG BUILD_FROM FROM $BUILD_FROM +# Add community packets +RUN echo -e "https://nl.alpinelinux.org/alpine/latest-stable/main\nhttps://nl.alpinelinux.org/alpine/latest-stable/community" > /etc/apk/repositories + # Install requirements for add-on RUN apk add --no-cache python3 bash py3-pip @@ -18,4 +21,4 @@ COPY / . RUN chmod a+x /volvoAAOS2mqtt/run.sh # command to run on container start -CMD [ "/volvoAAOS2mqtt/run.sh" ] \ No newline at end of file +CMD [ "/volvoAAOS2mqtt/run.sh" ]