Skip to content

Commit 834afdd

Browse files
committed
remove yarn.lock injection into docker test containers in order to trigger installing the latest allowed JS assets
1 parent 3ad2f86 commit 834afdd

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile.test

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ruby:2.7.2-alpine3.12
1+
FROM ruby:3.0-alpine3.12
22

33
RUN gem install bundler:2.1.4
44

Dockerfile.test_5_2_ruby_2_6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY matestack-ui-core.gemspec /app/
1313
COPY Gemfile.5.2 /app/Gemfile
1414
RUN bundle install
1515

16-
COPY package.json yarn* /app/
16+
COPY package.json /app/
1717
RUN yarn install
1818

1919
RUN apk update && apk upgrade \

Dockerfile.test_6_0_ruby_2_6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY matestack-ui-core.gemspec /app/
1313
COPY Gemfile.6.0 /app/Gemfile
1414
RUN bundle install
1515

16-
COPY package.json yarn* /app/
16+
COPY package.json /app/
1717
RUN yarn install
1818

1919
RUN apk update && apk upgrade \

Dockerfile.test_6_1_ruby_2_7

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY matestack-ui-core.gemspec /app/
1313
COPY Gemfile.6.1 /app/Gemfile
1414
RUN bundle install
1515

16-
COPY package.json yarn* /app/
16+
COPY package.json /app/
1717
RUN yarn install
1818

1919
RUN apk update && apk upgrade \

Dockerfile.test_6_1_ruby_3_0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ COPY matestack-ui-core.gemspec /app/
1313
COPY Gemfile.6.1 /app/Gemfile
1414
RUN bundle install
1515

16-
COPY package.json yarn* /app/
16+
COPY package.json /app/
1717
RUN yarn install
1818

1919
RUN apk update && apk upgrade \

0 commit comments

Comments
 (0)