author | Pierre-Yves David <pierre-yves.david@octobus.net> |
Tue, 11 Apr 2023 21:56:16 +0200 | |
changeset 51161 | f816ca29a285 |
parent 43359 | e66a3bfcb19b |
permissions | -rw-r--r-- |
43359
e66a3bfcb19b
packaging: make dockerrpm fedora target more generic
Mads Kiilerich <mads@kiilerich.com>
parents:
43358
diff
changeset
|
1 |
FROM fedora:%OS_RELEASE% |
38561 | 2 |
|
3 |
RUN groupadd -g 1000 build && \ |
|
4 |
useradd -u 1000 -g 1000 -s /bin/bash -d /build -m build |
|
5 |
||
6 |
RUN dnf install -y \ |
|
7 |
gcc \ |
|
8 |
gettext \ |
|
9 |
make \ |
|
43358
518655314fc5
packaging: use "python3" for fedora29 ... and as buildrpm default
Mads Kiilerich <mads@kiilerich.com>
parents:
40585
diff
changeset
|
10 |
python3-devel \ |
518655314fc5
packaging: use "python3" for fedora29 ... and as buildrpm default
Mads Kiilerich <mads@kiilerich.com>
parents:
40585
diff
changeset
|
11 |
python3-docutils \ |
38561 | 12 |
rpm-build |
13 |
||
14 |
# For creating repo meta data |
|
15 |
RUN dnf install -y createrepo |