mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 12:07:25 +00:00
12 lines
188 B
Docker
12 lines
188 B
Docker
# Codecov @codecov
|
|
|
|
FROM ubuntu:latest
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apt update && apt install -y curl git mercurial
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|