* execute node bin * calculate percentage for lcov file * install node in docker image * use relative path to bin folder * update readme
9 lines
133 B
Docker
9 lines
133 B
Docker
FROM ruby:2.6.5-alpine
|
|
|
|
RUN apk add --update nodejs
|
|
|
|
COPY lib /action/lib
|
|
COPY bin /action/bin
|
|
|
|
CMD ["ruby", "/action/lib/index.rb"]
|