diff --git a/Dockerfile b/Dockerfile index c6e4e6d..f59e11b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,11 @@ -FROM ruby:2.3-alpine +FROM ruby:3.1.6-alpine USER root WORKDIR /build COPY . /build +RUN gem update \ + && gem install concurrent-ruby \ + && bundle install + WORKDIR / ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ] \ No newline at end of file