Skip to content

Commit e6ecf32

Browse files
Dockerfile test 2
I really should not be using deprecated parameters.
1 parent 375c631 commit e6ecf32

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ WORKDIR /build
55
COPY Gemfile /build/
66
COPY *.gemspec /build/
77

8-
RUN bundle config set jobs $(nproc) \
9-
&& bundle install --without development test
8+
RUN bundle config set jobs "$(nproc)" \
9+
&& bundle config set without 'development test' \
10+
&& bundle install
1011

1112
COPY . /build
1213

0 commit comments

Comments
 (0)