fix rust readme

This commit is contained in:
Lance R. Vick 2024-02-01 21:34:06 -08:00
parent 82efcb642b
commit 92e0854916
No known key found for this signature in database
GPG key ID: 8E47A1EC35A1551D

View file

@ -35,6 +35,7 @@ FROM stagex/busybox as build
COPY --from=stagex/rust . /
COPY --from=stagex/gcc . /
COPY --from=stagex/binutils . /
COPY --from=stagex/libunwind . /
RUN printf 'fn main(){ println!("Hello World!"); }' > hello.rs
RUN rustc hello.rs
FROM scratch