actions-yarn/Dockerfile
Marc-Antoine 097057d996
Use full node image
NPM for Github actions uses the full node image from docker.

I need it because some of my dependencies need python and slim version does not seems to have it.

More here: https://github.com/actions/npm/issues/8
2019-04-21 21:45:04 +02:00

17 lines
571 B
Docker

FROM node:10
LABEL version="1.1.0"
LABEL repository="https://github.com/Borales/actions-yarn"
LABEL homepage="https://github.com/Borales/actions-yarn"
LABEL maintainer="Oleksandr Bordun <bordun.alexandr@gmail.com>"
LABEL com.github.actions.name="GitHub Action for Yarn"
LABEL com.github.actions.description="Wraps the yarn CLI to enable common yarn commands."
LABEL com.github.actions.icon="package"
LABEL com.github.actions.color="blue"
# COPY LICENSE README.md THIRD_PARTY_NOTICE.md /
COPY "entrypoint.sh" "/entrypoint.sh"
ENTRYPOINT ["/entrypoint.sh"]
CMD ["help"]