librpm 0.2.1

RPM Package Manager library binding with an idiomatic Rust API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# Rust CI Dockerfile (librpm-rs project)
#
# Resulting image is published as rustrpm/ci on Docker Hub

FROM quay.io/centos:stream9

# Update container RPMs and install Rust compiler + rust dev tools
RUN dnf --assumeyes update && \
    dnf --assumeyes install rust cargo clippy rustfmt clang-devel rpm-devel zlib-devel && \
    dnf clean all

# Configure Rust environment variables
ENV RUST_BACKTRACE full