From 09716a30c16f4ca925fc78f3f447f7222d4f75f4 Mon Sep 17 00:00:00 2001 From: t3chn0m4g3 Date: Tue, 19 Nov 2024 15:10:57 +0100 Subject: [PATCH] switch to pyinstaller from pypi --- docker/adbhoney/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker/adbhoney/Dockerfile b/docker/adbhoney/Dockerfile index 05fb55a9..48200a87 100644 --- a/docker/adbhoney/Dockerfile +++ b/docker/adbhoney/Dockerfile @@ -4,15 +4,15 @@ FROM alpine:3.20 AS builder COPY dist/ /root/dist/ # # Install packages -RUN echo "@testing http://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories && \ - apk --no-cache -U add \ +RUN apk --no-cache -U add \ build-base \ git \ procps \ py3-psutil \ py3-requests \ - py3-pyinstaller@testing \ + py3-pip \ python3 && \ + pip3 install --break-system-packages pyinstaller && \ # # Install adbhoney from git git clone https://github.com/t3chn0m4g3/ADBHoney -b pyinstaller /opt/adbhoney && \