From 40c9b68c82268990cceeaf523bb6b1deb4fa5d2c Mon Sep 17 00:00:00 2001 From: ekneg54 Date: Sat, 31 Aug 2024 18:02:24 +0200 Subject: [PATCH] add rust compiler to build image --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index f5e2f8a12..28b35d4b6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,6 +8,8 @@ ARG no_proxy ADD . /logprep WORKDIR /logprep +RUN curl https://sh.rustup.rs -sSf | bash -s -- -y +ENV PATH="/root/.cargo/bin:${PATH}" RUN python -m pip install --upgrade pip wheel setuptools>=72.2.0 RUN python -m venv /opt/venv # Make sure we use the virtualenv: