aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: d59913b1ed99e1c5134b080bd5cf7aa63c1659d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM fedora:latest

ENV SUMMARY="Fedora builder" \
    DESCRIPTION="Fedora 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
RUN dnf install -y \
	'dnf-command(builddep)' \
	'dnf-command(config-manager)' \
	&& \
    dnf install -y \
	fedora-packager \
	&& \
    dnf clean all -y