From aa883ac39de7b97bb5055e304e47341fc185c3f0 Mon Sep 17 00:00:00 2001 From: wh0crypt Date: Fri, 26 Jun 2026 12:23:43 +0100 Subject: [PATCH] fix: delete upx dep due to it not creating demons --- Dockerfile | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 518f744..a736370 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,12 +10,6 @@ RUN apt update && apt -y install \ xz-utils \ && rm -rf /var/lib/apt/lists/* -# Manually install upx -RUN wget https://github.com/upx/upx/releases/download/v4.2.4/upx-4.2.4-amd64_linux.tar.xz \ - && tar -xf upx-4.2.4-amd64_linux.tar.xz \ - && mv upx-4.2.4-amd64_linux/upx /usr/local/bin/ \ - && rm -rf upx-4.2.4-amd64_linux* - WORKDIR /build RUN git clone https://github.com/HavocFramework/Havoc.git .