Skip to content

Commit d142c3b

Browse files
authored
pythonpath was wrong, the location is what saved us
1 parent d7b99c4 commit d142c3b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Dockerfile

+2-4
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,15 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
3737

3838
RUN pip3 install --break-system-packages --no-cache-dir pyyaml Cython scons pycapnp pre-commit ruff parameterized coverage numpy pytest
3939

40-
WORKDIR /project/msgq/
40+
WORKDIR /project/msgq
4141
RUN cd /tmp/ && \
4242
git clone -b v2.x --depth 1 https://github.com/catchorg/Catch2.git && \
4343
cd Catch2 && \
4444
mv single_include/* /project/msgq/ && \
4545
cd .. \
4646
rm -rf Catch2
4747

48-
WORKDIR /project/msgq
49-
50-
ENV PYTHONPATH=/project
48+
ENV PYTHONPATH=/project/msgq
5149

5250
COPY . .
5351
RUN ls && rm -rf .git && \

0 commit comments

Comments
 (0)