mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 12:07:25 +00:00
12 lines
No EOL
170 B
Docker
12 lines
No EOL
170 B
Docker
# Codecov @codecov
|
|
|
|
FROM alpine:3.10
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apk add --no-cache curl bash git
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ] |