mirror of
https://github.com/StrawberryMaster/wayback-machine-downloader.git
synced 2025-12-17 17:56:44 +00:00
The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-ALPINE322-OPENSSL-10597997 - https://snyk.io/vuln/SNYK-ALPINE322-OPENSSL-10597997
16 lines
291 B
Docker
16 lines
291 B
Docker
FROM ruby:3.4.5-alpine
|
|
USER root
|
|
WORKDIR /build
|
|
|
|
COPY Gemfile /build/
|
|
COPY *.gemspec /build/
|
|
|
|
RUN bundle config set jobs "$(nproc)" \
|
|
&& bundle config set without 'development test' \
|
|
&& bundle install
|
|
|
|
COPY . /build
|
|
|
|
WORKDIR /
|
|
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]
|