From bfa94cb357b0df7968ba06d43bd24108d3a55c5d Mon Sep 17 00:00:00 2001 From: Martin Bernstorff Date: Wed, 25 Oct 2023 16:49:36 +0200 Subject: [PATCH] dev: remove pyright from dockerfile build --- Dockerfile | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2c144c25..4832310d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,10 +9,6 @@ COPY pyproject.toml ./ RUN pip install .[dev] RUN pip install .[tests] -# Ensure pyright builds correctly. -# If run in make validate, it is run in parallel, which breaks its installation. -RUN pyright . - # Install the entire app COPY . /app RUN pip install -e .