Signed-off-by: Jess Frazelle <me@jessfraz.com>
This commit is contained in:
Jess Frazelle
2016-09-19 13:08:09 -07:00
parent 38fb6ec212
commit 0c2e49733e
3 changed files with 12 additions and 16 deletions

View File

@@ -1,11 +1,9 @@
FROM debian:wheezy
FROM alpine:latest
MAINTAINER Jessica Frazelle <jess@docker.com>
RUN apt-get update && apt-get install -y \
ca-certificates \
python-boto \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
RUN apk add --no-cache \
py-boto
COPY ./reset-cache.py /bin/reset-cache.py