mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-08 04:59:18 +01:00
11 lines
192 B
Docker
11 lines
192 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk add --no-cache \
|
|
py-boto
|
|
|
|
|
|
COPY ./reset-cache.py /bin/reset-cache.py
|
|
|
|
CMD [ "/usr/bin/python", "/bin/reset-cache.py" ]
|