You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. FROM centos:7
  2. RUN yum -y groupinstall 'Development Tools'
  3. RUN yum -y install centos-packager
  4. RUN yum -y install sudo
  5. RUN yum -y install epel-release
  6. RUN useradd -s /bin/bash -m rpm
  7. RUN echo >> /etc/sudoers
  8. RUN echo "rpm ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
  9. USER rpm
  10. WORKDIR /home/rpm