From cfc96e899b352f68992b1214fec23d7584d1114b Mon Sep 17 00:00:00 2001 From: Jason Dellaluce Date: Thu, 19 Jan 2023 08:05:51 +0000 Subject: [PATCH] fix(docker/falco): trust latest GPG key Signed-off-by: Jason Dellaluce --- docker/falco/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/falco/Dockerfile b/docker/falco/Dockerfile index 06974309..a9323467 100644 --- a/docker/falco/Dockerfile +++ b/docker/falco/Dockerfile @@ -88,7 +88,7 @@ RUN rm -rf /usr/bin/clang \ && ln -s /usr/bin/clang-7 /usr/bin/clang \ && ln -s /usr/bin/llc-7 /usr/bin/llc -RUN curl -s https://falco.org/repo/falcosecurity-3672BA8F.asc | apt-key add - \ +RUN curl -s https://falco.org/repo/falcosecurity-packages.asc | apt-key add - \ && echo "deb https://download.falco.org/packages/${VERSION_BUCKET} stable main" | tee -a /etc/apt/sources.list.d/falcosecurity.list \ && apt-get update -y \ && if [ "$FALCO_VERSION" = "latest" ]; then apt-get install -y --no-install-recommends falco; else apt-get install -y --no-install-recommends falco=${FALCO_VERSION}; fi \