aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: 1fea2974b12281ad16c8c236980e1d94e073170d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
FROM quay.io/almalinux/almalinux:9

ENV SUMMARY="AlmaLinux 9 builder" \
    DESCRIPTION="AlmaLinux 9 image for test builds and rpm package builds."

LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \
      summary="${SUMMARY}" \
      description="${DESCRIPTION}"

USER root

COPY configure-mirror /usr/local/bin
RUN /usr/local/bin/configure-mirror && \
    dnf update -y && \
    dnf install -y \
	'dnf-command(builddep)' \
	'dnf-command(config-manager)' \
        https://dl.fedoraproject.org/pub/epel/epel-release-latest-9.noarch.rpm \
	&& \
    /usr/local/bin/configure-mirror && \
    dnf repolist --all && \
    dnf config-manager --set-enabled crb && \
    dnf install -y \
	rpm-build tito createrepo \
	autoconf automake libtool \
	make cmake meson ninja-build \
	gcc gcc-c++ binutils \
	glibc-devel openssl-devel \
	bc flex bison tree \
	&& \
    dnf clean all -y

# fedora-packager