adampweb d85c880d23 Vulnerablity fix:
Updates Ruby version to address vulnerability

Updates the Ruby version in the Dockerfile
to the latest stable release in the 3.x series
to address identified vulnerabilities.

Details: https://hub.docker.com/layers/library/ruby/3.1.6-alpine/images/sha256-7ff1261ca74033c38e86b04e30a6078567ec17e59d465d96250665897fb52180
2025-05-09 18:32:47 +02:00

11 lines
204 B
Docker

FROM ruby:3.4.3-alpine
USER root
WORKDIR /build
COPY . /build
RUN gem update \
&& gem install concurrent-ruby \
&& bundle install
WORKDIR /
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]