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.
ansible/packaging/debian/Dockerfile

21 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"]