From a1b971c4aef65accc1ef8657a9e47d68893eb6e5 Mon Sep 17 00:00:00 2001 From: Hannes Kuchelmeister Date: Fri, 11 Feb 2022 10:24:11 +0100 Subject: [PATCH] add base containerfile --- Containerfile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 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"] +