diff --git a/Dockerfile b/Dockerfile index b5cae9d..1a747ed 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,15 +1,14 @@ -FROM ruby:3.4.3-alpine +FROM ruby:3.4.4-alpine USER root WORKDIR /build COPY Gemfile /build/ COPY *.gemspec /build/ -RUN gem update \ - && bundle config set jobs $(nproc) \ - && bundle install +RUN bundle config set jobs $(nproc) \ + && bundle install --without development test COPY . /build WORKDIR / -ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ] \ No newline at end of file +ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]