gh-action-bump-version/Dockerfile

21 lines
603 B
Docker
Raw Normal View History

2019-01-27 03:52:12 +00:00
FROM node:10-slim
2019-01-27 00:14:12 +00:00
2019-01-26 21:51:06 +00:00
LABEL version="1.0.0"
2019-10-26 17:35:58 +00:00
LABEL repository="http://github.com/phips28/gh-action-bump-version"
LABEL homepage="http://github.com/gh-action-bump-version"
LABEL maintainer="Philipp Holly <phips28@gmx.at>"
2019-01-26 21:51:06 +00:00
2019-10-26 17:35:58 +00:00
LABEL com.github.actions.name="Automated version bump for npm packages."
LABEL com.github.actions.description="Automated version bump for npm packages."
2019-01-26 21:51:06 +00:00
LABEL com.github.actions.icon="package"
LABEL com.github.actions.color="red"
COPY LICENSE README.md /
2019-05-23 19:12:30 +00:00
RUN apt-get update
RUN apt-get -y install git
2019-01-26 21:51:06 +00:00
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]