18 lines
545 B
Docker
18 lines
545 B
Docker
|
FROM node:10-slim
|
||
|
|
||
|
LABEL version="1.0.0"
|
||
|
LABEL repository="http://github.com/mikeal/auto-release"
|
||
|
LABEL homepage="http://github.com/auto-release"
|
||
|
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"
|
||
|
ENTRYPOINT ["/entrypoint.sh"]
|
||
|
CMD ["help"]
|
||
|
|