virt 0.4.3

Rust bindings to the libvirt C library
Documentation
# THIS FILE WAS AUTO-GENERATED
#
#  $ lcitool manifest ci/manifest.yml
#
# https://gitlab.com/libvirt/libvirt-ci

FROM docker.io/library/alpine:3.20

RUN apk update && \
    apk upgrade && \
    apk add \
        ca-certificates \
        cargo \
        ccache \
        clang-dev \
        gcc \
        git \
        libvirt-dev \
        pkgconf \
        rust \
        rust-clippy && \
    apk list --installed | sort > /packages.txt && \
    mkdir -p /usr/libexec/ccache-wrappers && \
    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/cc && \
    ln -s /usr/bin/ccache /usr/libexec/ccache-wrappers/gcc

ENV CCACHE_WRAPPERSDIR "/usr/libexec/ccache-wrappers"
ENV LANG "en_US.UTF-8"