Updated franky

This commit is contained in:
Liliesh 2024-06-28 19:26:15 +02:00
parent 01d30491ac
commit 3303d62959
Signed by: liliesh
GPG key ID: 680387646C7BAE8E
3 changed files with 16 additions and 18 deletions

14
rust/Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM rockylinux:9.3
# Install base
RUN dnf install -y rpmdevtools rpmlint epel-release
RUN dnf group install -y "Development Tools"
RUN dnf install -y dpkg
# Install lang specifics
RUN dnf install -y rust cargo
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
ENV PATH="/root/.cargo/bin:$PATH"
CMD [ "/bin/bash" ]