mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
255 B
Docker
17 lines
255 B
Docker
8 years ago
|
FROM ubuntu:xenial
|
||
|
|
||
|
RUN apt-get update && apt-get install -y \
|
||
|
asciidoc \
|
||
|
cdbs \
|
||
|
debootstrap \
|
||
|
devscripts \
|
||
|
make \
|
||
|
pbuilder \
|
||
|
python-setuptools
|
||
|
|
||
|
VOLUME /ansible
|
||
|
WORKDIR /ansible
|
||
|
|
||
|
ENTRYPOINT ["/bin/bash", "-c"]
|
||
|
CMD ["make deb"]
|