mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
9 lines
175 B
Docker
9 lines
175 B
Docker
|
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" ]
|