You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
339 B
10 lines
339 B
FROM rockylinux/rockylinux:8
|
|
RUN yum install -y epel-release
|
|
RUN yum install -y openssl-devel copr-cli
|
|
RUN yum groupinstall -y 'Development Tools'
|
|
ARG toolchain
|
|
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain ${toolchain}
|
|
ENV PATH=/root/.cargo/bin:$PATH
|
|
RUN cargo install cargo-rpm
|
|
COPY . /root/src
|
|
WORKDIR /root/src/
|
|
|