contrib/packaging/docker/centos8
branchstable
changeset 43405 7c9d42c1042d
child 45935 eccbfa7e19c0
equal deleted inserted replaced
43404:a69772d2f3c3 43405:7c9d42c1042d
       
     1 FROM centos:centos8
       
     2 
       
     3 RUN groupadd -g %GID% build && \
       
     4     useradd -u %UID% -g %GID% -s /bin/bash -d /build -m build
       
     5 
       
     6 RUN yum install -y \
       
     7 	gcc \
       
     8 	gettext \
       
     9 	make \
       
    10 	python3-devel \
       
    11 	python3-docutils \
       
    12 	rpm-build
       
    13 
       
    14 # For creating repo meta data
       
    15 RUN yum install -y createrepo