8 lines
270 B
Docker
Raw Normal View History

2016-07-29 10:06:21 -05:00
FROM ruby:2.3
USER root
WORKDIR /build
2016-07-20 23:14:59 -04:00
COPY . /build
RUN cd /build && \ bundle install --gemfile=/build/Gemfile
# ENTRYPOINT [ "/usr/local/bundle/bin/wayback_machine_downloader" ]
ENTRYPOINT [ "bundle", "exec", "--gemfile=/build/Gemfile", "wayback_machine_downloader" ]