blob: 8aecb6c46951ebb41a2187ca75814877e78eae81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
FROM centos:8
ENV SUMMARY="CentOS 8 builder" \
DESCRIPTION="CentOS 8 image for test builds and rpm package builds."
LABEL maintainer="Gerd Hoffmann <kraxel@redhat.com>" \
summary="${SUMMARY}" \
description="${DESCRIPTION}"
USER root
RUN dnf update -y && \
dnf install -y \
'dnf-command(builddep)' \
'dnf-command(config-manager)' \
https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm \
&& \
dnf config-manager --set-enabled PowerTools && \
dnf install -y \
fedora-packager \
&& \
dnf clean all -y
|