Skip to content

Commit

Permalink
Sigh.
Browse files Browse the repository at this point in the history
  • Loading branch information
svanoort committed Mar 15, 2016
1 parent 7d07ba1 commit 43981cd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docker/centos6-py26/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN rpm -ivh http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noar

# pycurl is part of yum, and so is python, so we don't install
RUN yum install -y python-pip git-core python-mock rpm-build tar && yum clean all \
&& pip install discover jmespath jsonpath pyyaml django==1.6.5 django-tastypie==0.12.1
&& pip install discover jmespath jsonschema pyyaml django==1.6.5 django-tastypie==0.12.1

COPY verify_image.py /tmp/verify_image.py
RUN chmod a+rwx /tmp/verify_image.py
2 changes: 1 addition & 1 deletion docker/python3/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y git-core tar \
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Python 2 and 3 dependencies, future is just for python 3 compat, sigh
RUN pip3 install pycurl jmespath jsonpath pyyaml django==1.6.5 django-tastypie==0.12.1 future
RUN pip3 install pycurl jmespath jsonschema pyyaml django==1.6.5 django-tastypie==0.12.1 future

COPY verify_image.py /tmp/verify_image.py
RUN chmod a+rwx /tmp/verify_image.py
2 changes: 1 addition & 1 deletion docker/ubuntu14-py27/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN apt-get update && apt-get install --no-install-recommends -y python python-p
&& apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*

# Python 2 and 3 dependencies
RUN pip install mock jmespath jsonpath pyyaml django==1.6.5 django-tastypie==0.12.1
RUN pip install mock jmespath jsonschema pyyaml django==1.6.5 django-tastypie==0.12.1

COPY verify_image.py /tmp/verify_image.py
RUN chmod a+rwx /tmp/verify_image.py

0 comments on commit 43981cd

Please sign in to comment.