Skip to content

Commit

Permalink
Fix crux-mir Docker image entrypoint
Browse files Browse the repository at this point in the history
This fixes an oversight introduced in #1265 where the location of `cargo` was
moved to `/home/crux-mir/.cargo/bin/cargo` in the `crux-mir` Docker image, but
the image entrypoint was not updated accordingly.

Fixes #1276.
  • Loading branch information
RyanGlScott committed Jan 23, 2025
1 parent 0f1b3b8 commit 1258871
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/Dockerfile-crux-mir
Original file line number Diff line number Diff line change
Expand Up @@ -92,4 +92,4 @@ ENV LANG=C.UTF-8 \
PATH=/home/crux-mir/.cargo/bin:$PATH \
CRUX_RUST_LIBRARY_PATH=/crux-mir/rlibs

ENTRYPOINT ["/usr/local/bin/cargo", "crux-test"]
ENTRYPOINT ["/home/crux-mir/.cargo/bin/cargo", "crux-test"]

0 comments on commit 1258871

Please sign in to comment.