mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
12 lines
173 B
Docker
12 lines
173 B
Docker
# Codecov @codecov
|
|
|
|
FROM ubuntu:latest
|
|
|
|
WORKDIR /app
|
|
COPY . /app
|
|
|
|
RUN apk add --no-cache curl bash git
|
|
|
|
RUN chmod +x /app/entrypoint.sh
|
|
|
|
ENTRYPOINT [ "/app/entrypoint.sh" ]
|