Now builds in the container instead of pulling from the reposi-thingy.

This commit is contained in:
themonkeyz
2016-07-20 22:47:23 -04:00
parent 98faa4e9ec
commit 498c28bbe7

View File

@@ -1,3 +1,7 @@
FROM ruby:2.1
RUN gem install wayback_machine_downloader
COPY ../ /build
RUN cd build && \
bundle install && \
cd .. && \
rm -rf build
ENTRYPOINT [ "/usr/local/bundle/bin/wayback_machine_downloader" ]