Dockerfile test

...again
This commit is contained in:
Felipe 2025-05-21 21:26:37 -03:00 committed by GitHub
parent 6e2739f5a8
commit 375c6314ad
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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" ]
ENTRYPOINT [ "/build/bin/wayback_machine_downloader" ]