stylelint/Dockerfile

19 lines
579 B
Text
Raw Normal View History

2019-08-21 16:01:23 -04:00
FROM exelban/baseimage:node-latest
LABEL name="stylelint" \
version="1.0.0" \
repository="https://github.com/exelban/stylelint" \
homepage="https://github.com/exelban/stylelint" \
maintainer="Serhiy Mytrovtsiy <mitrovtsiy@ukr.net>" \
com.github.actions.name="stylelint" \
com.github.actions.description="GitHub Action that runs stylelint." \
com.github.actions.icon="layout" \
com.github.actions.color="black"
2019-08-21 16:03:11 -04:00
COPY LICENSE README.md /
2019-08-21 16:01:23 -04:00
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
2019-08-21 16:03:11 -04:00
ENTRYPOINT ["/entrypoint.sh"]