Hello! This is the repo for FTC Team 12675 Hermit Social Club's code for the 2021 season onwards. Feel free to take a look around at some of the things we've built this year!
https://www.reddit.com/r/FTC/comments/fjcfmn/its_panic_time/
This repo has a convenient (and rather large) docker file that handles most of the Android SDK versioning, NDK installs, Cmake, and Rust. To setup the dockerfile:
- Install Docker Desktop
- Clone the repo with
git clone https://github.com/Arc-blroth/PandemicPanic --recurse-submodules pandemic_panic
- Build the Dockerfile with
docker build --rm -t hermitsocialclub/pandemicpanic:latest .
. This should make a docker image with the taghermitsocialclub/pandemicpanic
- Run the dockerfile with
docker-compose up -d
- To get a shell on the running container, use
docker exec -ti Steven /bin/bash
. - Run
docker-compose down
to end the container.