mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-17 09:46:05 +00:00
16 lines
291 B
Docker
16 lines
291 B
Docker
FROM ruby:3.4.4-alpine
|
|
USER root
|
|
WORKDIR /build
|
|
|
|
COPY Gemfile /build/
|
|
COPY *.gemspec /build/
|
|
|
|
RUN bundle config set jobs "$(nproc)" \
|
|
&& bundle config set without 'development test' \
|
|
&& bundle install
|
|
|
|
COPY . /build
|
|
|
|
WORKDIR /
|
|
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]
|