mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-09 20:47:26 +00:00
15 lines
194 B
Docker
15 lines
194 B
Docker
# Codecov @codecov
|
|
|
|
FROM alpine:3.10
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apk add --no-cache \
|
|
curl \
|
|
git \
|
|
mercurial
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|