6 lines
131 B
Docker
Raw Normal View History

FROM ruby:2.1
2016-07-20 23:14:59 -04:00
COPY . /build
RUN cd build && \
2016-07-20 23:14:59 -04:00
bundle install
ENTRYPOINT [ "/usr/local/bundle/bin/wayback_machine_downloader" ]