We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70018d1 commit 579f94eCopy full SHA for 579f94e
Dockerfile.c2rust
@@ -20,6 +20,9 @@ RUN apt update -y -q && apt upgrade -y -q && apt update -y -q && \
20
21
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain none
22
23
+# Install uv (required for c2rust-refactor build scripts)
24
+RUN curl -LsSf https://astral.sh/uv/install.sh | sh
25
+
26
RUN mkdir -p /opt/compiler-explorer
27
28
# Add github public key to known_hosts, to enable interaction-less clone
c2rust/build.sh
@@ -3,6 +3,7 @@
3
set -exu
4
source common.sh
5
source $HOME/.cargo/env
6
+export PATH="$HOME/.local/bin:$PATH"
7
8
## $1 : version, like v0.9 (tag) or master (branch)
9
## $2 : destination: a directory or S3 path (eg. s3://...)
0 commit comments