From c82a7b239538952cdab43bb753c2409d7e5765bb Mon Sep 17 00:00:00 2001 From: Maxime Mouchet Date: Sat, 6 Jan 2024 23:19:54 +0100 Subject: [PATCH] agent: upgrade to caracal v0.15.3 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 33bfc10..01d41fe 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.2/caracal-linux-amd64 > /usr/bin/caracal \ +RUN curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64 > /usr/bin/caracal \ && chmod +x /usr/bin/caracal WORKDIR /app diff --git a/docs/dev.md b/docs/dev.md index abfb88d..8e5b13d 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.2/caracal-linux-amd64 > /usr/bin/caracal +curl -L https://github.com/dioptra-io/caracal/releases/download/v0.15.3/caracal-linux-amd64 > /usr/bin/caracal chmod +x /usr/bin/caracal ```