# This Containerfile is for the Makefile to use, not for builds to Dockerhub FROM registry.fedoraproject.org/fedora:40 LABEL maintainer="Randy Barlow " RUN dnf upgrade -y # openssl-devel is needed for cargo-audit RUN dnf install -y cargo clippy openssl-devel rustfmt # cargo-license is useful for finding all the licenses of the bundled libraries RUN cargo install cargo-audit cargo-license CMD ["bash"]