10 lines
243 B
Docker
10 lines
243 B
Docker
FROM centos:7
|
|
|
|
RUN yum install -y epel-release
|
|
RUN yum install -y make mock python3 which git gcc python3-devel
|
|
|
|
# Fix output of rpm --eval '%{?dist}'
|
|
RUN sed -i "s/.el7.centos/.el7/g" /etc/rpm/macros.dist
|
|
|
|
RUN pip3 install -IU poetry ansible
|