dockerfiles/cf-reset-cache/Dockerfile

17 lines
316 B
Docker
Raw Normal View History

FROM alpine:latest
2014-10-13 03:22:07 +02:00
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apk update && apk add \
ca-certificates \
openssl \
python \
python-dev \
py-pip \
build-base \
&& rm -rf /var/cache/apk/* \
&& pip install boto
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" ]