mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 16:16:24 +00:00
functioning dockerfile
This commit is contained in:
@@ -1,4 +1,4 @@
|
|||||||
FROM debian:9.5-slim
|
FROM alpine:3.10.1
|
||||||
|
|
||||||
LABEL "com.github.actions.name"="Codecov"
|
LABEL "com.github.actions.name"="Codecov"
|
||||||
LABEL "com.github.actions.description"="Upload coverage reports to codecov"
|
LABEL "com.github.actions.description"="Upload coverage reports to codecov"
|
||||||
@@ -9,9 +9,7 @@ LABEL "repository"="https://github.com/ibrahim0814/github-actions-test.git"
|
|||||||
LABEL "homepage"="https://www.codecov.io"
|
LABEL "homepage"="https://www.codecov.io"
|
||||||
LABEL "maintainer"="Ib <ibrahim@codecov.io>"
|
LABEL "maintainer"="Ib <ibrahim@codecov.io>"
|
||||||
|
|
||||||
RUN apt-get install bash-completion
|
RUN apk add --no-cache curl bash git
|
||||||
RUN apt-get install git-all
|
|
||||||
RUN apt-get install curl
|
|
||||||
|
|
||||||
ADD entrypoint.sh /entrypoint.sh
|
ADD entrypoint.sh /entrypoint.sh
|
||||||
RUN chmod +x /entrypoint.sh
|
RUN chmod +x /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)
|
||||||
Reference in New Issue
Block a user