File tree 1 file changed +10
-2
lines changed
1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -29,18 +29,26 @@ WORKDIR /avo/
29
29
COPY Gemfile* /avo/
30
30
COPY Rakefile /avo/
31
31
COPY avo.gemspec /avo/
32
- COPY package.json /avo/
33
32
COPY ./lib/avo.rb /avo/lib/avo.rb
34
33
COPY ./lib/avo/version.rb /avo/lib/avo/version.rb
35
34
RUN bundle install --jobs 4 --retry 3
36
35
36
+ COPY package.json /avo/
37
37
COPY yarn.lock /avo/
38
38
39
39
RUN yarn install
40
40
RUN yarn check --integrity
41
41
42
- COPY . /avo/
42
+ COPY ./bin/ /avo/bin/
43
+ COPY ./app/frontend/ /avo/app/frontend/
44
+ COPY ./config/ /avo/config/
45
+ COPY ./.eslintrc.json /avo/.eslintrc.json
46
+ COPY ./jsconfig.json /avo/jsconfig.json
47
+ COPY ./postcss.config.js /avo/postcss.config.js
48
+ COPY ./tailwind.config.js /avo/tailwind.config.js
43
49
44
50
RUN bin/webpack
45
51
52
+ COPY . /avo/
53
+
46
54
RUN bundle exec rails build
You can’t perform that action at this time.
0 commit comments