This repository has been archived on 2023-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
2019-11-03 01:34:57 +01:00

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"]