commit a1b971c4aef65accc1ef8657a9e47d68893eb6e5 Author: Hannes Kuchelmeister Date: Fri Feb 11 10:24:11 2022 +0100 add base containerfile diff --git a/Containerfile b/Containerfile new file mode 100644 index 0000000..e4ad400 --- /dev/null +++ b/Containerfile @@ -0,0 +1,15 @@ +FROM fedora:latest +ENV RUST_VERSION=1.58.1 + +RUN dnf install gtk4-devel gcc libadwaita-devel -y + +RUN curl https://sh.rustup.rs -sSf | sh -s -- -y +RUN . ~/.cargo/env +RUN ls $HOME/.cargo/env +ENV PATH=/root/.cargo/bin:$PATH +RUN rustup install ${RUST_VERSION} + +WORKDIR /mnt + +CMD ["/bin/bash"] +