From 24c0f36fc0e5c9b60f458aeb9412034769ace5e4 Mon Sep 17 00:00:00 2001 From: Marcel Gaupp Date: Sun, 1 Dec 2024 09:08:32 +0100 Subject: [PATCH] Add Ruff linter (#3) Add Ruff linter --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index c6346ef..7889500 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,3 +8,5 @@ RUN apt-get update RUN apt install -y python3 python3-pip # Install pytest for python exercises RUN pip3 install -U pytest +# Install Ruff for static code analysis +RUN pip3 install ruff==0.8.1