mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-17 17:56:44 +00:00
Merge pull request #9 from adampweb/feature/increase-performance
Increase performance of Bundler processes
This commit is contained in:
commit
23cc3d69b1
@ -1,11 +1,15 @@
|
|||||||
FROM ruby:3.4.3-alpine
|
FROM ruby:3.4.3-alpine
|
||||||
USER root
|
USER root
|
||||||
WORKDIR /build
|
WORKDIR /build
|
||||||
COPY . /build
|
|
||||||
|
COPY Gemfile /build/
|
||||||
|
COPY *.gemspec /build/
|
||||||
|
|
||||||
RUN gem update \
|
RUN gem update \
|
||||||
&& gem install concurrent-ruby \
|
&& bundle config set jobs $(nproc) \
|
||||||
&& bundle install
|
&& bundle install
|
||||||
|
|
||||||
|
COPY . /build
|
||||||
|
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]
|
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]
|
||||||
Loading…
x
Reference in New Issue
Block a user