Files
codecov-action/Dockerfile
T

10 lines
142 B
Docker
Raw Normal View History

2019-08-06 14:02:11 -07:00
FROM alpine:3.10
WORKDIR /app
COPY . /app
RUN apk add --no-cache curl bash git
RUN chmod +x /entrypoint.sh
ENTRYPOINT [ "/entrypoint.sh" ]