diff --git a/Dockerfile b/Dockerfile index 6c541d0..455c8e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,13 +1,10 @@ FROM ubuntu:14.04 MAINTAINER Dave Newman -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"] diff --git a/Vagrantfile b/Vagrantfile deleted file mode 100644 index 2d853ea..0000000 --- a/Vagrantfile +++ /dev/null @@ -1,21 +0,0 @@ -Vagrant.configure('2') do |config| - config.vm.box = "phusion/ubuntu-14.04-amd64" - - config.vm.provision :shell, inline: <