dockerfiles/cf-reset-cache/Dockerfile

12 lines
219 B
Docker
Raw Normal View History

FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
2014-10-13 03:22:07 +02:00
RUN apk add --no-cache \
ca-certificates \
py-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" ]