mirror of
https://github.com/codecov/codecov-action.git
synced 2026-04-06 22:49:24 +00:00
functioning dockerfile
This commit is contained in:
parent
4779151e5f
commit
7a4fef29fd
5 changed files with 7 additions and 4 deletions
16
codecov/Dockerfile
Normal file
16
codecov/Dockerfile
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
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"]
|
||||
5
codecov/entrypoint.sh
Normal file
5
codecov/entrypoint.sh
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -eu
|
||||
|
||||
bash <(curl -s https://codecov.io/bash)
|
||||
Loading…
Add table
Add a link
Reference in a new issue