author | Matt Harbison <matt_harbison@yahoo.com> |
Fri, 05 Apr 2019 18:36:43 -0400 | |
changeset 42075 | 456c37433c43 |
parent 40585 | d0a6b2c8f8b6 |
child 43358 | 518655314fc5 |
permissions | -rw-r--r-- |
40585
d0a6b2c8f8b6
packaging: add Fedora 29 target
Augie Fackler <raf@durin42.com>
parents:
38561
diff
changeset
|
1 |
FROM fedora:29 |
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 \ |
|
10 |
python-devel \ |
|
11 |
python-docutils \ |
|
12 |
rpm-build |
|
13 |
||
14 |
# For creating repo meta data |
|
15 |
RUN dnf install -y createrepo |