codecov-action/codecov/Dockerfile
2019-07-30 23:51:36 -07:00

16 lines
No EOL
513 B
Docker

FROM alpine:3.10.1
LABEL "com.github.actions.name"="Codecov"
LABEL "com.github.actions.description"="Upload coverage reports to codecov"
LABEL "com.github.actions.icon"="umbrella"
LABEL "com.github.actions.color"="red"
LABEL "repository"="https://github.com/ibrahim0814/github-actions-test.git"
LABEL "homepage"="https://www.codecov.io"
LABEL "maintainer"="Ib <ibrahim@codecov.io>"
RUN apk add --no-cache curl bash git
ADD entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]