Install concurrent-ruby gem to avoid errors like cannot load such file -- concurrent-ruby

This commit is contained in:
adampweb 2025-04-02 15:23:24 +02:00
parent f5572d6129
commit 6518ecf215

View File

@ -3,5 +3,9 @@ USER root
WORKDIR /build WORKDIR /build
COPY . /build COPY . /build
RUN gem update \
&& gem install concurrent-ruby \
&& bundle install
WORKDIR / WORKDIR /
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ] ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]