From e08bc334170131cfc070bc02afdf7b7bd2805612 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mayoral=20Vilches?= Date: Wed, 18 Jun 2025 15:40:13 +0200 Subject: [PATCH] Add new key MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: VĂ­ctor Mayoral Vilches --- .devcontainer/Dockerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile index 4f539061..6cd21173 100644 --- a/.devcontainer/Dockerfile +++ b/.devcontainer/Dockerfile @@ -3,6 +3,12 @@ FROM kalilinux/kali-rolling # Set environment variable to non-interactive ENV DEBIAN_FRONTEND=noninteractive +# Fix Kali Linux repository GPG key issues +RUN apt-get update --allow-insecure-repositories && \ + apt-get install -y --no-install-recommends --allow-unauthenticated kali-archive-keyring && \ + apt-get clean && \ + rm -rf /var/lib/apt/lists/* + # [Optional] Uncomment this section to install additional OS packages. RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ && apt-get -y install --no-install-recommends \