Skip to content

Instantly share code, notes, and snippets.

@miloszwasacz
Last active March 8, 2025 13:50
Show Gist options
  • Select an option

  • Save miloszwasacz/e5915bf59a48f3adf9c31f4d32fc4474 to your computer and use it in GitHub Desktop.

Select an option

Save miloszwasacz/e5915bf59a48f3adf9c31f4d32fc4474 to your computer and use it in GitHub Desktop.
Docker setup for RISC-V compiler toolchain
name: build-machine
services:
riscv-toolchain:
build: ./
command: /bin/bash
volumes:
- ./test/res:/build
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