From daf22def9d6d74c995afef2cc59bdbd763b844eb Mon Sep 17 00:00:00 2001 From: Dan Hicks Date: Tue, 28 Jul 2026 19:04:28 -0400 Subject: [PATCH] fix: add pip --user bin dir to PATH in test Dockerfile. --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 3fe061c5..eddd2f1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM python:3.12 +ENV PATH="/root/.local/bin:${PATH}" WORKDIR /src COPY requirements.txt .