From 8da7596af2a2a7f246537997e759bb86c8a799a0 Mon Sep 17 00:00:00 2001 From: Maxime Mouchet Date: Tue, 19 Dec 2023 14:33:50 +0100 Subject: [PATCH] agent: upgrade to caracal v0.15.2 to fix mangled lines on stdout --- dockerfiles/iris-agent.dockerfile | 2 +- docs/dev.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dockerfiles/iris-agent.dockerfile b/dockerfiles/iris-agent.dockerfile index 1cb956a..33bfc10 100644 --- a/dockerfiles/iris-agent.dockerfile +++ b/dockerfiles/iris-agent.dockerfile @@ -36,7 +36,7 @@ RUN apt-get update \ zstd \ && rm -rf /var/lib/apt/lists/* -RUN curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.1/caracal-linux-amd64 > /usr/bin/caracal \ +RUN curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.2/caracal-linux-amd64 > /usr/bin/caracal \ && chmod +x /usr/bin/caracal WORKDIR /app diff --git a/docs/dev.md b/docs/dev.md index 71e3c80..abfb88d 100644 --- a/docs/dev.md +++ b/docs/dev.md @@ -21,7 +21,7 @@ To be able to access them from your own machine, you need to add the following e You also need caracal in your $PATH if you intend to run Iris locally: ```bash # Use caracal-macos-amd64 for macOS -curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.1/caracal-linux-amd64 > /usr/bin/caracal +curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.2/caracal-linux-amd64 > /usr/bin/caracal chmod +x /usr/bin/caracal ```