File tree Expand file tree Collapse file tree 3 files changed +7
-18
lines changed Expand file tree Collapse file tree 3 files changed +7
-18
lines changed Original file line number Diff line number Diff line change @@ -138,9 +138,7 @@ jobs:
138
138
with :
139
139
node-version : ' latest'
140
140
- name : Setup Ruby
141
- run : sudo apt-get install ruby-full
142
- - name : Setup Bundler
143
- run : gem install bundler
141
+ uses : ruby/setup-ruby@v1
144
142
- name : Install pnpm
145
143
run : npm install -g pnpm
146
144
- name : Install Node Deps
@@ -191,9 +189,7 @@ jobs:
191
189
with :
192
190
node-version : ' latest'
193
191
- name : Setup Ruby
194
- run : sudo apt-get install ruby-full
195
- - name : Setup Bundler
196
- run : gem install bundler
192
+ uses : ruby/setup-ruby@v1
197
193
- name : Install pnpm
198
194
run : npm install -g pnpm
199
195
- name : Install Node Deps
@@ -243,8 +239,6 @@ jobs:
243
239
node-version : ' latest'
244
240
- name : Setup Ruby
245
241
run : sudo apt-get install ruby-full
246
- - name : Setup Bundler
247
- run : gem install bundler
248
242
- name : Install pnpm
249
243
run : npm install -g pnpm
250
244
- name : Install Node Deps
Original file line number Diff line number Diff line change @@ -123,9 +123,7 @@ jobs:
123
123
with :
124
124
node-version : ' latest'
125
125
- name : Setup Ruby
126
- run : sudo apt-get install ruby-full
127
- - name : Setup Bundler
128
- run : gem install bundler
126
+ uses : ruby/setup-ruby@v1
129
127
- name : Install pnpm
130
128
run : npm install -g pnpm
131
129
- name : Install npm deps
@@ -170,9 +168,7 @@ jobs:
170
168
with :
171
169
node-version : ' latest'
172
170
- name : Setup Ruby
173
- run : sudo apt-get install ruby-full
174
- - name : Setup Bundler
175
- run : gem install bundler
171
+ uses : ruby/setup-ruby@v1
176
172
- name : Install pnpm
177
173
run : npm install -g pnpm
178
174
- name : Install npm deps
@@ -217,9 +213,7 @@ jobs:
217
213
with :
218
214
node-version : ' latest'
219
215
- name : Setup Ruby
220
- run : sudo apt-get install ruby-full
221
- - name : Setup Bundler
222
- run : gem install bundler
216
+ uses : ruby/setup-ruby@v1
223
217
- name : Install pnpm
224
218
run : npm install -g pnpm
225
219
- name : Install npm deps
Original file line number Diff line number Diff line change @@ -68,7 +68,6 @@ FROM ruby:alpine3.19 as normal
68
68
WORKDIR /usr/src/app
69
69
COPY . .
70
70
COPY node_modules/ node_modules/
71
- RUN ls -la
72
71
RUN apk add --no-cache build-base libxml2-dev libxslt-dev postgresql-dev
73
72
RUN bundle install
74
73
RUN cp config/settings.example.yml config/settings.yml
@@ -80,6 +79,7 @@ FROM jruby:latest as jruby
80
79
WORKDIR /usr/src/app
81
80
COPY . .
82
81
COPY node_modules/ node_modules/
82
+ RUN bundle install
83
83
RUN cp config/settings.example.yml config/settings.yml
84
84
VOLUME /usr/src/app/config/
85
85
EXPOSE 9293
@@ -89,6 +89,7 @@ FROM ghcr.io/graalvm/truffleruby-community:23.1.2-debian as truffleruby
89
89
WORKDIR /usr/src/app
90
90
COPY . .
91
91
COPY node_modules/ node_modules/
92
+ RUN bundle install
92
93
RUN cp config/settings.example.yml config/settings.yml
93
94
VOLUME /usr/src/app/config/
94
95
EXPOSE 9293
You can’t perform that action at this time.
0 commit comments