docker-s3-volume-watch/Dockerfile

12 lines
265 B
Docker
Raw Normal View History

FROM alpine:3.10
label maintainer="Elementar Sistemas <contato@elementarsistemas.com.br>"
2014-08-30 21:16:23 +02:00
RUN apk --no-cache add bash py3-pip && pip3 install --no-cache-dir awscli
2014-12-04 06:32:49 +01:00
ADD watch /watch
2014-08-30 21:16:23 +02:00
VOLUME /data
ENV S3_SYNC_FLAGS "--delete"
2014-12-04 06:32:49 +01:00
ENTRYPOINT [ "./watch" ]
CMD ["/data"]