mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
d96d372830
Signed-off-by: Jessica Frazelle <princess@docker.com>
17 lines
316 B
Docker
17 lines
316 B
Docker
FROM alpine:latest
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
RUN apk update && apk add \
|
|
ca-certificates \
|
|
openssl \
|
|
python \
|
|
python-dev \
|
|
py-pip \
|
|
build-base \
|
|
&& rm -rf /var/cache/apk/* \
|
|
&& pip install boto
|
|
|
|
COPY ./reset-cache.py /bin/reset-cache.py
|
|
|
|
CMD [ "/usr/bin/python", "/bin/reset-cache.py" ]
|