12 lines
219 B
Docker
Raw Normal View History

FROM alpine:latest
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
2014-10-12 18:22:07 -07:00
RUN apk add --no-cache \
ca-certificates \
py-boto
2014-10-12 18:22:07 -07:00
COPY ./reset-cache.py /bin/reset-cache.py
2014-10-12 18:22:07 -07:00
CMD [ "/usr/bin/python", "/bin/reset-cache.py" ]