codecov-action/Dockerfile
2019-08-24 13:13:04 -04:00

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" ]