6 lines
131 B
Docker
Raw Normal View History

2016-07-29 10:06:21 -05:00
FROM ruby:2.3
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" ]