Skip to content

Commit

Permalink
cmake(ci): Fix system_deps python job
Browse files Browse the repository at this point in the history
  • Loading branch information
Mizux committed Nov 20, 2024
1 parent b21268c commit 1ffc71a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/docker/system_deps/python.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ RUN CTEST_OUTPUT_ON_FAILURE=1 cmake --build build --target test
FROM env AS install_env
WORKDIR /home/sample
COPY --from=build /home/project/build/python/dist/*.whl .
RUN python -m pip install *.whl
RUN python -m pip install --break-system-packages *.whl

FROM install_env AS install_devel
COPY cmake/samples/python .
Expand Down

0 comments on commit 1ffc71a

Please sign in to comment.