Files
docker-s3-volume-watch/Dockerfile
2020-02-13 19:04:19 -06:00

12 lines
263 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
ENV DELETE_FLAG "--delete"
ENTRYPOINT [ "./watch" ]
CMD ["/data"]