gh-action-bump-version/Dockerfile

22 lines
609 B
Docker
Raw Normal View History

2019-01-27 03:33:12 +00:00
FROM debian:stretch
2019-01-27 03:25:14 +00:00
FROM node:10
2019-01-26 21:51:06 +00:00
2019-01-27 00:14:12 +00:00
RUN "apt-get install git"
2019-01-26 21:51:06 +00:00
LABEL version="1.0.0"
2019-01-26 22:11:28 +00:00
LABEL repository="http://github.com/mikeal/merge-release"
LABEL homepage="http://github.com/merge-release"
2019-01-26 21:51:06 +00:00
LABEL maintainer="Mikeal Rogers <mikeal.rogers@gmail.com>"
LABEL com.github.actions.name="Automated releases for npm packages."
LABEL com.github.actions.description="Release npm package based on commit metadata."
LABEL com.github.actions.icon="package"
LABEL com.github.actions.color="red"
COPY LICENSE README.md /
COPY "entrypoint.sh" "/entrypoint.sh"
2019-01-27 00:14:12 +00:00
COPY cli.js /cli.js
2019-01-26 21:51:06 +00:00
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]