mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
16 lines
No EOL
513 B
Docker
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"] |