From f251e5075fc0a19d131cc00252bdffc201156d16 Mon Sep 17 00:00:00 2001 From: cccs-rs <62077998+cccs-rs@users.noreply.github.com> Date: Sun, 11 Feb 2024 06:09:55 +0000 Subject: [PATCH 1/2] Update for Bookworm --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index b608cd4..f2c30b1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,8 +4,10 @@ FROM cccs/assemblyline-v4-service-base:$branch ENV SERVICE_PATH unpacker.Unpacker USER root - -RUN apt-get update && apt-get install -y upx-ucl && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get install -y wget +RUN wget http://ftp.de.debian.org/debian/pool/main/u/upx-ucl/upx-ucl_3.96-2_amd64.deb && \ + apt install -y ./upx-ucl_3.96-2_amd64.deb && \ + rm -f upx-ucl_3.96-2_amd64.deb # Switch to assemblyline user USER assemblyline @@ -20,4 +22,4 @@ USER root RUN sed -i -e "s/\$SERVICE_TAG/$version/g" service_manifest.yml # Switch to assemblyline user -USER assemblyline \ No newline at end of file +USER assemblyline From 6ad84f05d856e86834aa18041062165142c8e76c Mon Sep 17 00:00:00 2001 From: cccs-rs <62077998+cccs-rs@users.noreply.github.com> Date: Fri, 16 Feb 2024 02:47:03 +0000 Subject: [PATCH 2/2] Update service_manifest --- service_manifest.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/service_manifest.yml b/service_manifest.yml index 91bd925..cf40f24 100644 --- a/service_manifest.yml +++ b/service_manifest.yml @@ -16,8 +16,9 @@ disable_cache: false enabled: true is_external: false licence_count: 0 +privileged: true docker_config: image: ${REGISTRY}cccs/assemblyline-service-unpacker:$SERVICE_TAG cpu_cores: 0.5 - ram_mb: 384 \ No newline at end of file + ram_mb: 2048