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