fix PYTHONPATH (#628)

pythonpath was wrong, the location is what saved us
This commit is contained in:
Shane Smiskol 2024-07-31 19:09:21 -07:00 committed by GitHub
parent d7b99c4296
commit 37e734b718
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 4 deletions

View File

@ -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 && \