Ditch s3cmd for aws cli

This commit is contained in:
Dave Newman
2014-12-03 21:32:49 -08:00
parent 024b5751da
commit 1ddcb07126
3 changed files with 7 additions and 38 deletions

View File

@ -1,13 +1,10 @@
FROM ubuntu:14.04
MAINTAINER Dave Newman <dave@assembly.com>
RUN apt-get update && apt-get -y -q install git python-setuptools python-dateutil python-magic
RUN git clone https://github.com/s3tools/s3cmd.git /s3cmd
RUN cd /s3cmd && python setup.py install
ADD s3cfg /.s3cfg
ADD run.sh run.sh
RUN apt-get update && apt-get install -y awscli
ADD watch /watch
VOLUME /data
ENTRYPOINT [ "./run.sh", "/data" ]
ENTRYPOINT [ "./watch" ]
CMD ["/data"]