Files
codecov-action/Dockerfile
2019-08-06 14:02:11 -07:00

10 lines
142 B
Docker

FROM alpine:3.10
WORKDIR /app
COPY . /app
RUN apk add --no-cache curl bash git
RUN chmod +x /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]