mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-17 17:56:44 +00:00
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
11 lines
204 B
Docker
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" ] |