1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/packaging/debian/Dockerfile
2018-03-26 16:28:28 -07:00

20 lines
329 B
Docker

FROM ubuntu:xenial
RUN apt-get update && apt-get install -y \
python-docutils \
cdbs \
debootstrap \
devscripts \
make \
pbuilder \
python-jinja2 \
python-setuptools \
python-yaml \
&& \
apt-get clean
VOLUME /ansible
WORKDIR /ansible
ENTRYPOINT ["/bin/bash", "-c"]
CMD ["make deb"]