Files
codecov-action/Dockerfile
“ibrahim0814” e0683efc0b add header comments
2019-08-07 20:21:41 -07:00

13 lines
197 B
Docker

# Codecov @codecov
# Ibrahim Ali @ibrahim0814
FROM alpine:3.10
WORKDIR /app
COPY . /app
RUN apk add --no-cache curl bash git
RUN chmod +x /app/entrypoint.sh
ENTRYPOINT [ "/app/entrypoint.sh" ]