1234567891011 |
- # syntax=docker/dockerfile:1.2
- FROM alpine
- LABEL maintainer="surkov.v@sdsys.ru"
- RUN --mount=type=bind,source=./files,target=/tmp/files \
- apk --no-cache add libffi-dev build-base py2-pip python2-dev libressl-dev\
- && pip install -r /tmp/files/requirements.txt \
- && adduser -D ansible
- USER ansible
|