dockerfiles/reset-cf-cache/Dockerfile

9 lines
175 B
Docker
Raw Normal View History

2014-10-13 03:22:07 +02:00
FROM python:2.7.8
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN pip install boto
ADD reset-cache.py /bin/reset-cache
RUN chmod +x /bin/reset-cache
CMD [ "reset-cache" ]