2019-08-27 07:33:55 -04:00
|
|
|
FROM exelban/baseimage:node-latest
|
2019-08-21 16:01:23 -04:00
|
|
|
|
2019-08-21 16:34:27 -04:00
|
|
|
LABEL name="stylelinter"
|
2019-08-21 16:30:36 -04:00
|
|
|
LABEL version="1.0.0"
|
|
|
|
LABEL repository="https://github.com/exelban/stylelint"
|
|
|
|
LABEL homepage="https://github.com/exelban/stylelint"
|
|
|
|
LABEL maintainer="Serhiy Mytrovtsiy <mitrovtsiy@ukr.net>"
|
2019-08-21 16:34:27 -04:00
|
|
|
LABEL com.github.actions.name="stylelinter"
|
2019-08-21 16:30:36 -04:00
|
|
|
LABEL com.github.actions.description="GitHub Action that runs stylelint."
|
|
|
|
LABEL com.github.actions.icon="layout"
|
|
|
|
LABEL com.github.actions.color="black"
|
2019-08-21 16:01:23 -04:00
|
|
|
|
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"]
|