| 123456789101112 | 
							- # syntax = tonistiigi/dockerfile:runmount20180618
 
- FROM centos:7.7.1908
 
- LABEL maintainer="surkov.v@sdsys.ru"
 
- RUN --mount=type=bind,source=./files,target=/tmp/files \
 
-     yum install -y epel-release \
 
-     && yum install -y python2-pip \
 
-     && pip install -r /tmp/files/requirements.txt \
 
-     && adduser ansible
 
- USER ansible
 
 
  |