Add Docker file and generate wrapper

This commit is contained in:
Heath Seals 2019-08-23 13:33:03 -05:00 committed by suckatrash
parent e1c051df54
commit 854daa0d46
No known key found for this signature in database
GPG key ID: 3857A763831B0756
3 changed files with 31 additions and 0 deletions

6
Dockerfile Normal file
View file

@ -0,0 +1,6 @@
FROM python:3
ADD generate.py /
RUN pip install --upgrade pip
#RUN pip install --upgrade --extra-index-url https://artifactory.delivery.puppetlabs.net/artifactory/api/pypi/pypi/simple infinitory
RUN pip install git+git://github.com/puppetlabs/infinitory.git@setup_fixup
CMD [ "python", "generate.py", "pe-master-infranext-prod-1.infc-aws.puppet.net" ]