From 37e734b71845dd007a90baa855640a120cd47281 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Wed, 31 Jul 2024 19:09:21 -0700 Subject: [PATCH] fix PYTHONPATH (#628) pythonpath was wrong, the location is what saved us --- Dockerfile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index 77ef04c..ddc3a83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -37,7 +37,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ RUN pip3 install --break-system-packages --no-cache-dir pyyaml Cython scons pycapnp pre-commit ruff parameterized coverage numpy pytest -WORKDIR /project/msgq/ +WORKDIR /project/msgq RUN cd /tmp/ && \ git clone -b v2.x --depth 1 https://github.com/catchorg/Catch2.git && \ cd Catch2 && \ @@ -45,9 +45,7 @@ RUN cd /tmp/ && \ cd .. \ rm -rf Catch2 -WORKDIR /project/msgq - -ENV PYTHONPATH=/project +ENV PYTHONPATH=/project/msgq COPY . . RUN ls && rm -rf .git && \