mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
d55c56944e
Signed-off-by: Jess Frazelle <acidburn@google.com>
12 lines
211 B
Docker
12 lines
211 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessie Frazelle <jess@linux.com>
|
|
|
|
RUN apk add --no-cache \
|
|
ca-certificates \
|
|
py-boto
|
|
|
|
|
|
COPY ./reset-cache.py /bin/reset-cache.py
|
|
|
|
CMD [ "/usr/bin/python", "/bin/reset-cache.py" ]
|