dockerfiles/cf-reset-cache/Dockerfile

13 lines
296 B
Docker
Raw Normal View History

FROM debian:wheezy
2014-10-13 03:22:07 +02:00
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
python-boto \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
2014-10-13 03:22:07 +02:00
COPY ./reset-cache.py /bin/reset-cache.py
2014-10-13 03:22:07 +02:00
CMD [ "/usr/bin/python", "/bin/reset-cache.py" ]