From f490455a0011fee4ea49e6d017c744cc86715d07 Mon Sep 17 00:00:00 2001 From: xyhhx Date: Tue, 2 Apr 2024 01:37:10 -0400 Subject: [PATCH] docs(readme): add syntax highlighting to codeblocks --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 45dbf51..27e9b39 100644 --- a/README.md +++ b/README.md @@ -24,17 +24,17 @@ For a full list of images see the "packages" directory. Get a shell in our x86_64 Stage3 bootstrap image: -``` +```sh docker run -it stagex/stage3 ``` Run a Python hello world: -``` +```sh docker run -i stagex/python -c "print('hello world')" ``` Make a hello world OCI container image with Rust: -``` +```dockerfile FROM stagex/busybox as build COPY --from=stagex/rust . / COPY --from=stagex/gcc . / @@ -249,25 +249,25 @@ For further reading see the [Bootstrappable Builds](https://bootstrappable.org/) #### Reproduce entire tree -``` +```sh make ``` #### Compile specific package -``` +```sh make rust ``` #### Compile specific package without cache -``` +```sh make NOCACHE=1 ``` #### Sign all locally built packages (WIP) -``` +```sh make sign ```