Merge pull request #9 from adampweb/feature/increase-performance

Increase performance of  Bundler processes
This commit is contained in:
Felipe 2025-05-15 08:50:04 -03:00 committed by GitHub
commit 23cc3d69b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,11 +1,15 @@
FROM ruby:3.4.3-alpine
USER root
WORKDIR /build
COPY . /build
COPY Gemfile /build/
COPY *.gemspec /build/
RUN gem update \
&& gem install concurrent-ruby \
&& bundle config set jobs $(nproc) \
&& bundle install
COPY . /build
WORKDIR /
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]