Files
docker-s3-volume-watch/Dockerfile
Alex Thomae f3d579a0e9 Updates to latest alpine
* updates to alpine:3.10 from alpine:3.6
* updates from python2 to python3
* ensures that pip doesn't create a cache directory
2019-08-27 10:09:54 +02:00

11 lines
236 B
Docker

FROM alpine:3.10
label maintainer="Elementar Sistemas <contato@elementarsistemas.com.br>"
RUN apk --no-cache add bash py3-pip && pip3 install --no-cache-dir awscli
ADD watch /watch
VOLUME /data
ENTRYPOINT [ "./watch" ]
CMD ["/data"]