mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-09 20:36:25 +00:00
13 lines
197 B
Docker
13 lines
197 B
Docker
# Codecov @codecov
|
|
# Ibrahim Ali @ibrahim0814
|
|
|
|
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" ] |