Last active
March 8, 2025 13:50
-
-
Save miloszwasacz/e5915bf59a48f3adf9c31f4d32fc4474 to your computer and use it in GitHub Desktop.
Docker setup for RISC-V compiler toolchain
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build-machine | |
| services: | |
| riscv-toolchain: | |
| build: ./ | |
| command: /bin/bash | |
| volumes: | |
| - ./test/res:/build |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM runtimeverificationinc/riscv-gnu-toolchain:ubuntu-jammy-2024.04.12 | |
| VOLUME ["/build"] | |
| RUN apt-get update && apt-get install -y nano | |
| WORKDIR /build | |
| CMD ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment