From 652aeb19c40beb900500a1fc990019e99840b208 Mon Sep 17 00:00:00 2001 From: "avi@robusta.dev" Date: Tue, 8 Oct 2024 11:40:26 +0300 Subject: [PATCH] fix build issue --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 641f2b19..6d17e51b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,8 +8,9 @@ ENV PATH="/app/venv/bin:$PATH" # Install system dependencies required for Poetry # We're installing here libexpat1, to upgrade the package to include a fix to 3 high CVEs. CVE-2024-45491,CVE-2024-45490,CVE-2024-45492 RUN apt-get update && \ - apt-get install -y --no-install-recommends libexpat1 \ - dpkg --add-architecture arm64 + dpkg --add-architecture arm64 \ + && apt-get install -y --no-install-recommends libexpat1 + # Set the working directory WORKDIR /app