add base containerfile

This commit is contained in:
2022-02-11 10:24:11 +01:00
commit a1b971c4ae

15
Containerfile Normal file
View File

@@ -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"]