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