FROM amazonlinux:2
ENV container docker
RUN \
  yum makecache fast; \
  yum install -y \
    /usr/bin/python /usr/bin/python2-config sudo \
    yum-plugin-ovl bash iproute shadow-utils; \
  sed -i 's/plugins=0/plugins=1/g' /etc/yum.conf; \
  yum clean all
