centos8
15 lines
| 273 B
| text/plain
|
TextLexer
Mathias De Mare
|
r43723 | FROM centos:centos8 | ||
RUN groupadd -g %GID% build && \ | ||||
useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build | ||||
RUN yum install -y \ | ||||
gcc \ | ||||
gettext \ | ||||
make \ | ||||
python3-devel \ | ||||
python3-docutils \ | ||||
rpm-build | ||||
# For creating repo meta data | ||||
RUN yum install -y createrepo | ||||