Dockerfile test 2

I really should not be using deprecated parameters.
This commit is contained in:
Felipe
2025-05-21 21:34:36 -03:00
committed by GitHub
parent 375c6314ad
commit e6ecf32a43

View File

@@ -5,8 +5,9 @@ WORKDIR /build
COPY Gemfile /build/
COPY *.gemspec /build/
RUN bundle config set jobs $(nproc) \
&& bundle install --without development test
RUN bundle config set jobs "$(nproc)" \
&& bundle config set without 'development test' \
&& bundle install
COPY . /build