Merge pull request #2 from adampweb/master

Upgrade Ruby version + install necessary gem
This commit is contained in:
Felipe 2025-04-02 22:52:25 -03:00 committed by GitHub
commit ec3fd2dcaa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,7 +1,11 @@
FROM ruby:2.3-alpine
FROM ruby:3.1.6-alpine
USER root
WORKDIR /build
COPY . /build
RUN gem update \
&& gem install concurrent-ruby \
&& bundle install
WORKDIR /
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]