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,13 +1,12 @@
FROM ruby:3.4.3-alpine FROM ruby:3.4.4-alpine
USER root USER root
WORKDIR /build WORKDIR /build
COPY Gemfile /build/ COPY Gemfile /build/
COPY *.gemspec /build/ COPY *.gemspec /build/
RUN gem update \ RUN bundle config set jobs $(nproc) \
&& bundle config set jobs $(nproc) \ && bundle install --without development test
&& bundle install
COPY . /build COPY . /build