mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-07 04:29:17 +01:00
12 lines
219 B
Docker
12 lines
219 B
Docker
FROM alpine:latest
|
|
LABEL 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" ]
|