mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-18 02:06:35 +00:00
6 lines
131 B
Docker
6 lines
131 B
Docker
FROM ruby:2.3
|
|
COPY . /build
|
|
RUN cd build && \
|
|
bundle install
|
|
ENTRYPOINT [ "/usr/local/bundle/bin/wayback_machine_downloader" ]
|