This repository specifies the Docker image and Python requirements.txt for the COMP110 Trailhead system.
More on multi-architecture images: https://www.docker.com/blog/multi-arch-build-and-images-the-simple-way/
Command to build and push multi-arch image, replace TAG with the version:
export TAG=0.0.5
docker buildx build \
--push \
--platform linux/arm64,linux/amd64 \
--tag krisjordan/trailhead:$TAG \
--file Dockerfile.students \
.